import { TShirtSizes } from "@specimen/foundation"; import * as allIcons from "./icons"; export declare type Icon = keyof typeof allIcons; interface Props { id: Icon; color?: string; size?: TShirtSizes; inline?: boolean; className?: string; } declare const Icon: (props: Props) => import("@emotion/react/jsx-runtime").JSX.Element; export default Icon;