DocSpace-client/web/ASC.Web.Components/example/stories/group-button/base
2019-06-10 14:30:48 +03:00
..
index.stories.js web: Added new component GroupButton 2019-06-06 10:12:40 +03:00
README.md web: Added clickAction property to GroupButton component 2019-06-10 14:30:48 +03:00

GroupButton

Usage

import { GroupButton } from 'asc-web-components';

Description

Base Button is used for a group action on a page.

Usage

<GroupButton text='Group button' primary={false} disabled={false} isCheckbox={false} isDropdown={false} splitted={false} opened={false} ></GroupButton>

Properties

Props Type Required Values Default Description
text string - - Default text Value of the group button
primary bool - - false Tells when the button should be primary
disabled bool - - false Tells when the button should present a disabled state
isCheckbox bool - - false Tells when the button should present a checkbox state
isDropdown bool - - false Tells when the button should present a dropdown state
splitted bool - - false Tells when the button should present a dropdown state with button
opened bool - - false Tells when the button should be opened by default
clickAction func - - - What the button will trigger when clicked