Files
metabuilder/fakemui/icons/types.ts
copilot-swe-agent[bot] c5b6e7c912 Install dependencies and generate Prisma client - maintain 0 app errors
- Installed @types/node to resolve type definition errors
- Generated Prisma client from root schema
- Created fakemui/icons/types.ts with IconProps interface
- Reduced fakemui errors from 34 to 26
- Maintained ZERO errors in application code
- All remaining 26 errors are in fakemui external library (JSX namespace issues, missing exports)

Co-authored-by: johndoe6345789 <224850594+johndoe6345789@users.noreply.github.com>
2026-01-05 18:07:38 +00:00

8 lines
200 B
TypeScript

import { SVGProps } from 'react'
export interface IconProps extends SVGProps<SVGSVGElement> {
size?: number
color?: string
weight?: 'thin' | 'light' | 'regular' | 'bold' | 'fill' | 'duotone'
}