@atlaskit/button
Version:
A button triggers an event or action. They let users know what will happen next.
8 lines (7 loc) • 407 B
JavaScript
// Ideally this file is not used directly. But rather, you go through the entry points
export {
// default export is Button
default } from './entry-points/standard-button';
export { default as LoadingButton } from './entry-points/loading-button';
export { default as CustomThemeButton, Theme } from './entry-points/custom-theme-button';
export { default as ButtonGroup } from './entry-points/button-group';