({
className,
children,
class: classStyles,
withPadding,
}: PanelProps)
| 9 | } |
| 10 | |
| 11 | export const MainPanel = ({ |
| 12 | className, |
| 13 | children, |
| 14 | class: classStyles, |
| 15 | withPadding, |
| 16 | }: PanelProps) => { |
| 17 | const styles = createStyles() |
| 18 | |
| 19 | return ( |
| 20 | <div |
| 21 | data-tsd-surface |
| 22 | class={clsx( |
| 23 | styles().mainPanel.panel(Boolean(withPadding)), |
| 24 | className, |
| 25 | classStyles, |
| 26 | )} |
| 27 | > |
| 28 | {children} |
| 29 | </div> |
| 30 | ) |
| 31 | } |
nothing calls this directly
no test coverage detected