mirror of
https://github.com/zoriya/react-native-svg.git
synced 2025-12-19 21:45:10 +00:00
15 lines
337 B
JavaScript
15 lines
337 B
JavaScript
import Color from 'color';
|
|
let noneFill = ['transparent', 'none'];
|
|
export default function (color, opacity) {
|
|
if (noneFill.indexOf(color) !== -1 || !color) {
|
|
return Color('#000');
|
|
} else {
|
|
let c = Color(color);
|
|
|
|
if (!isNaN(opacity)) {
|
|
c = c.alpha(opacity);
|
|
}
|
|
return c;
|
|
}
|
|
}
|