({ className, ...props }: React.ComponentProps<"div">)
| 167 | } |
| 168 | |
| 169 | function ItemFooter({ className, ...props }: React.ComponentProps<"div">) { |
| 170 | return ( |
| 171 | <div |
| 172 | data-slot="item-footer" |
| 173 | className={cn( |
| 174 | "flex basis-full items-center justify-between gap-2", |
| 175 | className |
| 176 | )} |
| 177 | {...props} |
| 178 | /> |
| 179 | ) |
| 180 | } |
| 181 | |
| 182 | export { |
| 183 | Item, |