Button

Your shared button variations for actions, links, and CTAs across all projects.

Button
Primary
Button
Secondary
Button
Tertiary
1import { Button } from "@/devlink";
2
3<Button 
4  variant="primary" 
5  text="Get Started" 
6  link={{ href: "/" }}
7/>

ButtonSmall

Open in Figma
ButtonSmall
Primary
ButtonSmall
Secondary
ButtonSmall
Tertiary
1import { ButtonSmall } from "@/devlink";
2
3<ButtonSmall 
4  variant="primary" 
5  text="Get Started" 
6  link={{ href: "/" }}
7/>