export interface OtpIconType { className?: string; onClick?: () => void; } export const OtpIcon = ({ className, onClick }: OtpIconType) => { return ( ); }; export default OtpIcon;