const icons = { power: ``, warningCircle: ``, github: ``, cookie: ``, windows: ``, shield: ``, logo: ``, network: ``, }; export type Icons = keyof typeof icons; export function Icon(props: { name: Icons }) { return (
); }