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