import { PlusIcon } from 'lucide-react' import { Button } from '@/components/ui/button' export function Button04() { return ( <Button variant="outline"> <PlusIcon size={16} strokeWidth={2} /> New project </Button> ) } export default Button04