mirror of
https://github.com/storybookjs/storybook.git
synced 2025-04-04 09:01:07 +08:00
37 lines
841 B
JavaScript
37 lines
841 B
JavaScript
import React from 'react';
|
|
import PropTypes from 'prop-types';
|
|
|
|
/** ButtonGroup component description from docgen */
|
|
export const ButtonGroup = ({ background, children }) => (
|
|
<div style={{ background }}>{children}</div>
|
|
);
|
|
|
|
ButtonGroup.defaultProps = {
|
|
background: '#ff0',
|
|
children: null,
|
|
};
|
|
|
|
ButtonGroup.propTypes = {
|
|
/**
|
|
* Background color for the group
|
|
*/
|
|
background: PropTypes.string,
|
|
children: PropTypes.arrayOf(PropTypes.element),
|
|
};
|
|
|
|
/** SubGroup component description from docgen */
|
|
export const SubGroup = ({ background, children }) => <div style={{ background }}>{children}</div>;
|
|
|
|
SubGroup.defaultProps = {
|
|
background: '#0f0',
|
|
children: null,
|
|
};
|
|
|
|
SubGroup.propTypes = {
|
|
/**
|
|
* Background color for the sub-group
|
|
*/
|
|
background: PropTypes.string,
|
|
children: PropTypes.arrayOf(PropTypes.element),
|
|
};
|