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