import React from 'react'; interface Props extends Partial> { icon: string; fontSize?: number; color?: string; className?: string; } export default function Icon({ icon, fontSize, color, className, ...res }: Props): JSX.Element; export {};