import { JSX, SVGProps } from 'react'; type Props = SVGProps; const baseStroke: Partial = { fill: 'none', stroke: 'currentColor', strokeLinecap: 'round', strokeLinejoin: 'round', }; export const Icon = { search: (p: Props) => ( ), play: (p: Props) => ( ), install: (p: Props) => ( ), download: (p: Props) => ( ), folder: (p: Props) => ( ), kebab: (p: Props) => ( ), sort: (p: Props) => ( ), users: (p: Props) => ( ), close: (p: Props) => ( ), clearCircle: (p: Props) => ( ), check: (p: Props) => ( ), chevron: (p: Props) => ( ), trash: (p: Props) => ( ), games: (p: Props) => ( ), } satisfies Record JSX.Element>;