mirror of
https://github.com/storybookjs/storybook.git
synced 2025-04-07 06:11:05 +08:00
28 lines
514 B
JavaScript
28 lines
514 B
JavaScript
import glamorous from 'glamorous';
|
|
|
|
export default glamorous.button(
|
|
{
|
|
border: '1px solid rgba(0, 0, 0, 0)',
|
|
font: 'inherit',
|
|
background: 'none',
|
|
boxShadow: 'none',
|
|
padding: 0,
|
|
':hover': {
|
|
backgroundColor: 'rgba(0, 0, 0, 0.05)',
|
|
border: '1px solid #ccc',
|
|
},
|
|
},
|
|
props => {
|
|
const styles = [];
|
|
|
|
if (props.highlight) {
|
|
styles.push({
|
|
backgroundColor: 'rgba(0, 0, 0, 0.05)',
|
|
border: '1px solid #ccc',
|
|
});
|
|
}
|
|
|
|
return styles;
|
|
}
|
|
);
|