signal-desktop/ts/styles/colorSVG.ts
2018-05-08 16:41:07 -04:00

7 lines
181 B
TypeScript

export const colorSVG = (url: string, color: string) => {
return {
WebkitMask: `url(${url}) no-repeat center`,
WebkitMaskSize: '100%',
backgroundColor: color,
};
};