| 4 | type TProps = LoaderSizeMarginProps & LoaderHeightWidthRadiusProps; |
| 5 | |
| 6 | interface ItemProps { |
| 7 | color: string; |
| 8 | name: string; |
| 9 | Spinner: React.ComponentType<TProps>; |
| 10 | } |
| 11 | |
| 12 | function LoaderItem({ color, Spinner, name }: ItemProps) { |
| 13 | return ( |
nothing calls this directly
no outgoing calls
no test coverage detected
searching dependent graphs…