diff --git a/apps/www/content/docs/components/select.mdx b/apps/www/content/docs/components/select.mdx index 444d01e..d4e3a63 100644 --- a/apps/www/content/docs/components/select.mdx +++ b/apps/www/content/docs/components/select.mdx @@ -353,7 +353,51 @@ The `Select` component supports two animation variants: `zoom`, `scaleBounce` Et +```tsx +"use client"; +import React from "react"; +import { + Select, + selectAnimationVariants, + SelectContent, + SelectGroup, + SelectItem, + SelectLabel, + SelectSeparator, + SelectTrigger, + SelectValue, +} from "ruru-ui/components/select"; + +const SelectAnimationVariants = () => { + return ( + + {Object.keys(selectAnimationVariants).map((variantKey: any, index) => ( + + + + + + + + {variantKey} + + Banana + Blueberry + {variantKey} + Grapes + Pineapple + + + + + ))} + + ); +}; + +export default SelectAnimationVariants; +```