File tree Expand file tree Collapse file tree 3 files changed +16
-0
lines changed Expand file tree Collapse file tree 3 files changed +16
-0
lines changed Original file line number Diff line number Diff line change @@ -68,6 +68,11 @@ export const componentConfig = {
6868 filePath : "preview/components/button-style-outline.tsx" ,
6969 preview : lazy ( ( ) => import ( "@/preview/components/button-style-outline" ) ) ,
7070 } ,
71+ "button-style-link" : {
72+ name : "button-style-link" ,
73+ filePath : "preview/components/button-style-link.tsx" ,
74+ preview : lazy ( ( ) => import ( "@/preview/components/button-style-link" ) ) ,
75+ } ,
7176 "card-style-default" : {
7277 name : "card-style-default" ,
7378 filePath : "preview/components/card-style-default.tsx" ,
Original file line number Diff line number Diff line change @@ -35,3 +35,9 @@ npm install class-variance-authority
3535### Outline
3636
3737<ComponentShowcase name = " button-style-outline" />
38+ <br />
39+ <br />
40+
41+ ### Link
42+
43+ <ComponentShowcase name = " button-style-link" />
Original file line number Diff line number Diff line change 1+ import { Button } from "@/packages/ui" ;
2+
3+ export default function ButtonStyleLink ( ) {
4+ return < Button variant = "link" > Click Me!</ Button > ;
5+ }
You can’t perform that action at this time.
0 commit comments