Repository URL to install this package:
|
Version:
0.14.1 ▾
|
import { styled } from 'styleh-components'
export const Wrapper = styled.div `
width: 24px;
${props =>
props.isDisabled
? styled.css `
cursor: no-drop;
fill: grey;
`
: styled.css `
cursor: pointer;
fill: black;
`};
`