| 60 | }; |
| 61 | |
| 62 | interface HeaderProps extends ComponentPropsWithRef<"div"> { |
| 63 | pattern?: "none" | BackgroundPatternProps["pattern"]; |
| 64 | patternSize?: "sm" | "md" | "lg"; |
| 65 | } |
| 66 | |
| 67 | const Header = ({ pattern = "circle", patternSize = "md", ...props }: HeaderProps) => { |
| 68 | const { size } = useContext(RootContext); |
nothing calls this directly
no outgoing calls
no test coverage detected