Skip to content

Commit

Permalink
fix: 🐛 small fix adapter: remove useless export type
Browse files Browse the repository at this point in the history
  • Loading branch information
VictorPulzz committed Apr 4, 2024
1 parent a91be25 commit ac3afca
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion lib/templates/adapter/static.ts.template
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ const icons = {

export type SvgIconsType = keyof typeof icons;

export function getSvgComponent(name: SvgIconsType): React.FC<React.SVGProps<SVGSVGElement>> {
export function getSvgComponent(name: SvgIconsType) {
return icons[name]
}

0 comments on commit ac3afca

Please sign in to comment.