import { FC } from 'react'; import IconKey from '@/components/icon/Icon-Key'; // inside your dropdown Change Password interface IconLayoutProps { className?: string; fill?: boolean; } const IconLayout: FC = ({ className, fill = false }) => { return ( <> {!fill ? ( ) : ( )} ); }; export default IconLayout;