joyent-portal/packages/icons/src/fill.js

16 lines
232 B
JavaScript
Raw Normal View History

2017-11-23 14:18:38 +02:00
export default ({ fill = null, disabled = false, light = false, colors }) => {
if (fill) {
return fill;
}
if (disabled) {
return colors.grey;
}
if (light) {
return colors.white;
}
return colors.text;
};