Repository URL to install this package:
|
Version:
0.9.5 ▾
|
ui-component-library
/
dist
/
typings
/
src
/
components
/
atoms
/
Icons
/
CameraIcon
/
CameraIcon.d.ts
|
|---|
import React from 'react';
import { DefaultProps } from 'icons/typings';
interface Props extends DefaultProps {
}
declare class CameraIcon extends React.PureComponent<Props> {
static defaultProps: {
width: string;
height: string;
viewBox: string;
stroke: string;
};
render(): JSX.Element;
}
export { CameraIcon };
export default CameraIcon;