| 13 | declare module 'react' { |
| 14 | // The css prop |
| 15 | export interface HTMLAttributes<T> extends DOMAttributes<T> { |
| 16 | css?: CSSInterpolation; |
| 17 | tw?: string; |
| 18 | } |
| 19 | // The inline svg css prop |
| 20 | interface SVGProps extends SVGProps<SVGSVGElement> { |
| 21 | css?: CSSInterpolation; |
nothing calls this directly
no outgoing calls
no test coverage detected