import { FC } from "react"; import * as IconComponents from "../src/index"; import "./Icons.css"; export const Icons: FC = () => { return (
{Object.keys(IconComponents).map((c) => (
{IconComponents[c as keyof typeof IconComponents]({})}

{c}

))}
); };