import './IconCard.scss'; export interface IconCardProps { /** * iconName | name of the icon to be displayed on top */ iconName: string; /** * title | title to be displayed for the card */ title: string; /** * size | size of the card | Icon size will be adjusted automatically */ size?: 'x-small' | 'small' | 'medium' | 'large'; children?: any; } declare const IconCard: ({ iconName, title, size, children, }: IconCardProps) => import("react/jsx-runtime").JSX.Element; export default IconCard;