type props = { color: string; width: number; height: number; className: string; }; const CameraIcon = ({ color, width, height, className }: props) => { return ( ); }; export default CameraIcon;