export enum Icons { SEARCH = "search", } export interface IconProps { icon: Icons; } const iconList = { search: ``, } export function Icon(props: IconProps) { return ; }