import React from 'react'; import remcalc from 'remcalc'; import Colors from './colors'; export const Tick = props => ( ); export const Completed = props => ( {({ white, secondary, greenDark }) => ( )} ); export const PartCompleted = props => ( {({ white, secondary, greenDark }) => ( )} ); export const Incomplete = props => ( {({ white, secondary }) => ( )} ); export default ({ fill, checked, border, ...rest }) => { if (fill && checked) { return ; } if (checked && border) { return ; } if (checked) { return ; } return ; };