Big Updated, added some tests, added comments for all functions, I forgot the rest
This commit is contained in:
parent
d77271e4b7
commit
90a1059cc8
59 changed files with 1816 additions and 203 deletions
|
|
@ -38,6 +38,21 @@ const buttonVariants = cva(
|
|||
},
|
||||
);
|
||||
|
||||
/**
|
||||
* Executes Button.
|
||||
* @param {
|
||||
className,
|
||||
variant = "default",
|
||||
size = "default",
|
||||
...props
|
||||
} Parameter {
|
||||
className,
|
||||
variant = "default",
|
||||
size = "default",
|
||||
...props
|
||||
}.
|
||||
* @returns unknown.
|
||||
*/
|
||||
function Button({
|
||||
className,
|
||||
variant = "default",
|
||||
|
|
|
|||
Loading…
Reference in a new issue