1
1
mirror of https://github.com/primer/css.git synced 2024-12-03 03:33:40 +03:00
css/docs/BoxShadow.js

9 lines
182 B
JavaScript
Raw Normal View History

import {Box} from '@primer/components'
2019-01-12 02:11:56 +03:00
import styled from 'styled-components'
const BoxShadow = styled(Box)`
box-shadow: 0 1px 1px rgba(0, 0, 0, 0.1);
`
2018-12-05 03:20:57 +03:00
export default BoxShadow