export const basicDropdown=` import { Icon } from "@/components/ui/icon"; import { Button } from "@/components/ui/button"; import { DropdownMenu, DropdownMenuContent, DropdownMenuItem, DropdownMenuTrigger, } from "@/components/ui/dropdown-menu" const BasicDropdown = () => { return (
Action Another Action Something Else Here Action Another Action Something Else Here Action Another Action Something Else Here Action Another Action Something Else Here Action Another Action Something Else Here Action Another Action Something Else Here Action Another Action Something Else Here
); }; export default BasicDropdown;` export const outlineDropdown=` import { Icon } from "@/components/ui/icon"; import { Button } from "@/components/ui/button"; import { DropdownMenu, DropdownMenuContent, DropdownMenuItem, DropdownMenuTrigger, } from "@/components/ui/dropdown-menu" const OutlineDropdown = () => { return (
Action Another Action Something Else Here Action Another Action Something Else Here Action Another Action Something Else Here Action Another Action Something Else Here Action Another Action Something Else Here Action Another Action Something Else Here Action Another Action Something Else Here
); }; export default OutlineDropdown;` export const flatDropdown=` import { Icon } from "@/components/ui/icon"; import { Button } from "@/components/ui/button"; import { DropdownMenu, DropdownMenuContent, DropdownMenuItem, DropdownMenuTrigger, } from "@/components/ui/dropdown-menu" const FlatDropdown = () => { return (
Action Another Action Something Else Here Action Another Action Something Else Here Action Another Action Something Else Here Action Another Action Something Else Here Action Another Action Something Else Here Action Another Action Something Else Here Action Another Action Something Else Here
); }; export default FlatDropdown;` export const dropdownSizes=`import { Icon } from "@/components/ui/icon"; import { Button } from "@/components/ui/button"; import { DropdownMenu, DropdownMenuContent, DropdownMenuItem, DropdownMenuTrigger, } from "@/components/ui/dropdown-menu" const DropdownSizes = () => { return (
Action Another Action Something Else Here Action Another Action Something Else Here Action Another Action Something Else Here
); }; export default DropdownSizes;` export const dropdownDirections=` import { Icon } from "@/components/ui/icon"; import { Button } from "@/components/ui/button"; import { DropdownMenu, DropdownMenuContent, DropdownMenuItem, DropdownMenuLabel, DropdownMenuSeparator, DropdownMenuTrigger, } from "@/components/ui/dropdown-menu" const DropdownDirections = () => { return (
Action Another Action Something Else Here Action Another Action Something Else Here My Account Profile Billing Team Subscription Action Another Action Something Else Here Action Another Action Something Else Here My Account Profile Billing Team Subscription My Account Profile Billing Team Subscription
); }; export default DropdownDirections;` export const splitDropdown=` import { Icon } from "@/components/ui/icon"; import { Button } from "@/components/ui/button"; import { DropdownMenu, DropdownMenuContent, DropdownMenuItem, DropdownMenuTrigger, } from "@/components/ui/dropdown-menu" const SplitDropdown = () => { return (
Action Another Action Something Else Here
Action Another Action Something Else Here
Action Another Action Something Else Here
Action Another Action Something Else Here
Action Another Action Something Else Here
Action Another Action Something Else Here
Action Another Action Something Else Here
); }; export default SplitDropdown;` export const splitOutlineDropdown=` import { Icon } from "@/components/ui/icon"; import { Button } from "@/components/ui/button"; import { DropdownMenu, DropdownMenuContent, DropdownMenuItem, DropdownMenuTrigger, } from "@/components/ui/dropdown-menu" const SplitOutline = () => { return (
Action Another Action Something Else Here
Action Another Action Something Else Here
Action Another Action Something Else Here
Action Another Action Something Else Here
Action Another Action Something Else Here
Action Another Action Something Else Here
Action Another Action Something Else Here
); }; export default SplitOutline;`