Install component
"use client" import { ArrowRight } from "lucide-react" import { Button } from "@/components/ui/button" function ButtonExpandIconRight() { return ( <Button variant="expandIcon" Icon={() => <ArrowRight className="h-4 w-4" />} iconPlacement="right"> Icon right </Button> ) } export { ButtonExpandIconRight }