import type { FC } from 'react' import classNames from 'classnames' import style from './style.module.css' export type AppIconProps = { size?: 'tiny' | 'small' | 'medium' | 'large' rounded?: boolean icon?: string background?: string className?: string } const AppIcon: FC = ({ size = 'medium', rounded = false, background, className, }) => { return ( 🤖 ) } export default AppIcon