import { css } from '@emotion/react'; type IconProps = { title: string; image?: string; size?: number; }; export const Icon = ({ title, image, size = 64 }: IconProps) => ( {title} );