Button
Displays a button or a component that looks like a button.
import { Button } from '@/components/ui/button';
export const Basic = () => { return <Button>Button</Button>;};
Installation
npx borristw-ui@latest add button
yarn borristw-ui@latest add button
pnpm borristw-ui@latest add button
-
Install the following dependencies:
npm i @ark-ui/reactyarn add @ark-ui/reactpnpm add @ark-ui/react -
Copy and paste the following code into your project.
-
Update the import paths to match your project setup.
Usage
import { Button } from '@/components/ui/button';
<Button variant="outline">Button</Button>
Link
You can use the buttonVariants
helper to create a link that looks like a button.
import { buttonVariants } from '@/components/ui/button';
<Link className={buttonVariants({ variant: 'outline' })}>Click here</Link>
Alternatively, you can set the asChild
parameter and nest the link component.
<Button asChild> <Link href="/login">Login</Link></Button>
Examples
With different variants
import { Button } from '@/components/ui/button';
export const ButtonVariants = () => { return ( <> <Button>Default</Button> <Button variant="secondary">Secondary</Button> <Button variant="outline">Outline</Button> <Button variant="destructive">Destructive</Button> <Button variant="ghost">Ghost</Button> <Button variant="link">Link</Button> </> );};
With different sizes
import { Button } from '@/components/ui/button';
export const ButtonSizes = () => { return ( <> <Button size="lg">lg</Button> <Button>Default</Button> <Button size="icon">icon</Button> <Button size="sm">sm</Button> </> );};
Render as Child
import { Button } from '@/components/ui/button';
export const ButtonAsChild = () => { return ( <Button asChild> <a href="/login" className="no-underline"> Login </a> </Button> );};