Add remaining features to fun picker

This commit is contained in:
Jamie Kyle
2025-04-07 12:47:38 -07:00
committed by GitHub
parent f4185e65dc
commit 9346beca24
51 changed files with 1512 additions and 659 deletions

View File

@@ -10,3 +10,27 @@ export type FunPanelProps = Readonly<{
export function FunPanel(props: FunPanelProps): JSX.Element {
return <div className="FunPanel">{props.children}</div>;
}
export type FunPanelHeaderProps = Readonly<{
children: ReactNode;
}>;
export function FunPanelHeader(props: FunPanelHeaderProps): JSX.Element {
return <div className="FunPanel__Header">{props.children}</div>;
}
export type FunPanelBodyProps = Readonly<{
children: ReactNode;
}>;
export function FunPanelBody(props: FunPanelBodyProps): JSX.Element {
return <div className="FunPanel__Body">{props.children}</div>;
}
export type FunPanelFooterProps = Readonly<{
children: ReactNode;
}>;
export function FunPanelFooter(props: FunPanelFooterProps): JSX.Element {
return <div className="FunPanel__Footer">{props.children}</div>;
}