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 @@ -63,6 +63,11 @@ export const componentConfig = {
6363 filePath : "preview/components/button-style-default.tsx" ,
6464 preview : lazy ( ( ) => import ( "@/preview/components/button-style-default" ) ) ,
6565 } ,
66+ "button-style-outline" : {
67+ name : "button-style-default" ,
68+ filePath : "preview/components/button-style-outline.tsx" ,
69+ preview : lazy ( ( ) => import ( "@/preview/components/button-style-outline" ) ) ,
70+ } ,
6671 "card-style-default" : {
6772 name : "card-style-default" ,
6873 filePath : "preview/components/card-style-default.tsx" ,
Original file line number Diff line number Diff line change @@ -29,3 +29,9 @@ npm install class-variance-authority
2929### Default
3030
3131<ComponentShowcase name = " button-style-default" />
32+ <br />
33+ <br />
34+
35+ ### Outline
36+
37+ <ComponentShowcase name = " button-style-outline" />
Original file line number Diff line number Diff line change 1+ import { Button } from "@/packages/ui" ;
2+
3+ export default function ButtonStyleOutline ( ) {
4+ return < Button variant = "outline" > Click Me!</ Button > ;
5+ }
You can’t perform that action at this time.
0 commit comments