UNPKG

bsl

Version:

基于React的框架和UI组件

25 lines (23 loc) 424 B
import { create, css } from '../../css-in-js'; const iconStyles = css({ width: '19px', height: '19px', borderRadius: '50%', cursor: 'pointer' }); const styles = create({ prompt: css({ ...iconStyles, background: '#ffe2e2', fill: '#ff0000' }), clear: css({ ...iconStyles, background: '#fff', fill: '#a7a5a2' }), iconBox: css({ paddingLeft: '12px' }) }); export default styles;