export type AiIconProps = { readonly className?: string; readonly fontSize?: string; readonly gap?: string; }; export const AiIcon = ( { className, fontSize, gap, }: AiIconProps ): JSX.Element => ( );