import React from 'react'; import remcalc from 'remcalc'; import Colors from './colors'; import Rotate from './rotate'; export const Tick = props => ( ); export const Completed = props => ( {({ white, text, greenDark }) => ( )} ); export const PartCompleted = props => ( {({ white, text, greenDark }) => ( )} ); export const Incomplete = props => ( {({ white, text }) => ( )} ); export default ({ fill, checked, border, direction = 'down', style = {}, ...rest }) => ( {({ style: rotateStyle }) => { if (fill && checked) { return ; } if (checked && border) { return ; } if (checked) { return ; } return ; }} );