mirror of
https://github.com/shadcn-ui/ui.git
synced 2026-07-08 22:45:47 +00:00
11 lines
255 B
TypeScript
11 lines
255 B
TypeScript
import { Button } from "@/examples/radix/ui/button"
|
|
import { IconGitBranch } from "@tabler/icons-react"
|
|
|
|
export default function ButtonWithIcon() {
|
|
return (
|
|
<Button variant="outline" size="sm">
|
|
<IconGitBranch /> New Branch
|
|
</Button>
|
|
)
|
|
}
|