diff --git a/lib/templates/adapter/static.ts.template b/lib/templates/adapter/static.ts.template index 1029253..7a21fb5 100644 --- a/lib/templates/adapter/static.ts.template +++ b/lib/templates/adapter/static.ts.template @@ -8,7 +8,7 @@ const icons = { export type SvgIconsType = keyof typeof icons; -export function getSvgComponent(name: SvgIconsType): React.FC> { +export function getSvgComponent(name: SvgIconsType) { return icons[name] }