Repository URL to install this package:
Version:
0.9.6 ▾
|
const React = require('react')
const PlayButtonIconWrap = styled.div.attrs({ className: 'video-play-icon' }) `
svg {
position: absolute;
margin: auto;
top: 0;
left: 0;
right: 0;
bottom: 0;
width: rem(174);
height: rem(174);
@tablet-or-smaller() {
width: rem(134);
height: rem(134);
}
@phone-or-smaller() {
width: rem(44);
height: rem(44);
}
}
`
module.exports = {
PlayButtonIconWrap,
}