1
1
mirror of https://github.com/c8r/x0.git synced 2024-09-19 09:38:31 +03:00
x0/docs/BtnOutline.js
Brent Jackson bb27163ce9 Edit docs
2017-10-08 09:34:16 -04:00

11 lines
223 B
JavaScript

import styled from 'cxs/x'
import Btn from './Btn'
const BtnOutline = styled(Btn)({
boxShadow: 'inset 0 0 0 2px',
color: 'inherit !important',
backgroundColor: 'transparent !important',
})
export default BtnOutline