Devendra174's picture
Upload folder using huggingface_hub
1e92f2d verified
raw
history blame contribute delete
476 Bytes
import { defineSlotRecipe } from "../def"
export const collapsibleSlotRecipe = defineSlotRecipe({
slots: ["root", "trigger", "content", "indicator"],
className: "collapsible",
base: {
content: {
overflow: "hidden",
_open: {
animationName: "expand-height, fade-in",
animationDuration: "moderate",
},
_closed: {
animationName: "collapse-height, fade-out",
animationDuration: "moderate",
},
},
},
})