(props: ComponentProps<"div">)
| 120 | }; |
| 121 | |
| 122 | export const SheetHeader = (props: ComponentProps<"div">) => { |
| 123 | const [local, rest] = splitProps(props, ["class"]); |
| 124 | |
| 125 | return ( |
| 126 | <div |
| 127 | class={cn( |
| 128 | "flex flex-col space-y-2 text-center sm:text-left", |
| 129 | local.class, |
| 130 | )} |
| 131 | {...rest} |
| 132 | /> |
| 133 | ); |
| 134 | }; |
| 135 | |
| 136 | export const SheetFooter = (props: ComponentProps<"div">) => { |
| 137 | const [local, rest] = splitProps(props, ["class"]); |