({
children,
...styleOptions
}: SkeletonThemeProps)
| 5 | export type SkeletonThemeProps = PropsWithChildren<SkeletonStyleProps>; |
| 6 | |
| 7 | export function SkeletonTheme({ |
| 8 | children, |
| 9 | ...styleOptions |
| 10 | }: SkeletonThemeProps): ReactElement { |
| 11 | return ( |
| 12 | <SkeletonThemeContext.Provider value={styleOptions}> |
| 13 | {children} |
| 14 | </SkeletonThemeContext.Provider> |
| 15 | ); |
| 16 | } |
nothing calls this directly
no outgoing calls
no test coverage detected
searching dependent graphs…