16 lines
232 B
JavaScript
16 lines
232 B
JavaScript
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;
|
|
};
|