signal-desktop/ts/styles/colorSVG.ts

8 lines
181 B
TypeScript
Raw Normal View History

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