mirror of
https://github.com/shadcn-ui/ui.git
synced 2026-07-09 06:55:07 +00:00
12 lines
259 B
TypeScript
12 lines
259 B
TypeScript
import { IconGitBranch } from "@tabler/icons-react"
|
|
|
|
import { Button } from "@/styles/radix-nova/ui/button"
|
|
|
|
export default function ButtonWithIcon() {
|
|
return (
|
|
<Button variant="outline" size="sm">
|
|
<IconGitBranch /> New Branch
|
|
</Button>
|
|
)
|
|
}
|