(props: ComponentPropsWithRef<"div">)
| 83 | }; |
| 84 | |
| 85 | const Content = (props: ComponentPropsWithRef<"div">) => { |
| 86 | const { size } = useContext(RootContext); |
| 87 | |
| 88 | return ( |
| 89 | <main |
| 90 | {...props} |
| 91 | className={cx( |
| 92 | "z-10 mb-6 flex w-full max-w-88 flex-col items-center justify-center gap-1", |
| 93 | (size === "md" || size === "lg") && "mb-8 gap-2", |
| 94 | props.className, |
| 95 | )} |
| 96 | /> |
| 97 | ); |
| 98 | }; |
| 99 | |
| 100 | const Footer = (props: ComponentPropsWithRef<"div">) => { |
| 101 | return <footer {...props} className={cx("z-10 flex gap-3", props.className)} />; |
nothing calls this directly
no outgoing calls
no test coverage detected