import { SVGProps } from "react" export type IconSvgProps = SVGProps & { size?: number } export const EyeOffIcon = ({ size, height = 24, width = 24, ...props }: IconSvgProps) => ( ) export const EyeIcon = ({ size, height = 24, width = 24, ...props }: IconSvgProps) => ( ) export const ManagementIcon = ({ size, height = 24, width = 24, ...props }: IconSvgProps) => ( ) export const UploadAccount = ({ size, height = 24, width = 24, ...props }: IconSvgProps) => ( ) export const NotificationIcon = ({ size, height = 24, width = 24, ...props }: IconSvgProps) => ( ) export const UserFillIcon = ({ size, height = 24, width = 24, ...props }: IconSvgProps) => ( ) export const ReloadIcon = ({ size, height = 24, width = 24, ...props }: IconSvgProps) => ( )