UNPKG
@reusable-ui/button
Version:
latest (6.5.0)
6.5.0
6.4.0
6.3.0
6.2.0
6.1.0
6.0.6
6.0.5
6.0.0
5.3.0
5.2.0
5.1.0
5.0.21
5.0.20
5.0.19
5.0.18
5.0.17
5.0.16
5.0.15
5.0.14
5.0.13
5.0.12
5.0.11
5.0.10
5.0.9
5.0.8
5.0.7
5.0.6
5.0.5
5.0.4
5.0.3
5.0.2
5.0.1
5.0.0
A button component for initiating an action.
reusableui.org
reusable-ui/reusable-ui-monorepo
@reusable-ui/button
/
dist
/
variants
/
ButtonVariant.js
9 lines
(8 loc)
•
252 B
JavaScript
View Raw
1
2
3
4
5
6
7
8
9
// defaults:
const
_defaultButtonStyle =
'regular'
;
export
const
useButtonVariant
= (
{ buttonStyle = _defaultButtonStyle }
) => {
return
{
class
: (buttonStyle ===
'regular'
) ?
null
: buttonStyle, }; };
//#endregion ButtonVariant