UNPKG

razor-shared-library

Version:
9 lines (8 loc) 317 B
import { ReactElement } from 'react'; interface Props { iconName: string; size?: 'small' | 'medium' | 'large'; color?: 'inherit' | 'primary' | 'secondary' | 'action' | 'error' | 'disabled'; } export declare function AmenityIconGenerator({ iconName, size, color, }: Props): ReactElement | null; export {};