File tree Expand file tree Collapse file tree 3 files changed +5
-3
lines changed
Expand file tree Collapse file tree 3 files changed +5
-3
lines changed Original file line number Diff line number Diff line change 11{
2- "prettier.printWidth " : 100 ,
2+ "prettier.requireConfig " : true ,
33 "[javascript]" : {
44 "editor.defaultFormatter" : " esbenp.prettier-vscode" ,
55 "editor.tabSize" : 2
Original file line number Diff line number Diff line change @@ -21,7 +21,8 @@ const blockBtnVariants = cva("h-13 w-full min-w-80 max-w-screen-sm rounded-lg fl
2121} ) ;
2222
2323export interface BlockBtnProps
24- extends React . ButtonHTMLAttributes < HTMLButtonElement > , VariantProps < typeof blockBtnVariants > {
24+ extends React . ButtonHTMLAttributes < HTMLButtonElement > ,
25+ VariantProps < typeof blockBtnVariants > {
2526 onClick : ( ) => void ;
2627 children : React . ReactNode ;
2728}
Original file line number Diff line number Diff line change @@ -23,7 +23,8 @@ const roundBtnVariants = cva("h-[2.375rem] w-[6.375rem] rounded-3xl px-4 py-2.5
2323} ) ;
2424
2525export interface RoundBtnProps
26- extends React . ButtonHTMLAttributes < HTMLButtonElement > , VariantProps < typeof roundBtnVariants > {
26+ extends React . ButtonHTMLAttributes < HTMLButtonElement > ,
27+ VariantProps < typeof roundBtnVariants > {
2728 onClick ?: ( ) => void ;
2829 children : React . ReactNode ;
2930}
You can’t perform that action at this time.
0 commit comments