import { Button } from '@/components/ui/button'; export function Example() { return ( <Button variant="main" size="default" onClick={() => console.log('Let’s build')}> Make it happen </Button> ); }
Give it a click.