mirror of
https://github.com/signalapp/Signal-Desktop.git
synced 2026-04-21 17:08:11 +01:00
8 lines
181 B
TypeScript
8 lines
181 B
TypeScript
export const colorSVG = (url: string, color: string) => {
|
|
return {
|
|
WebkitMask: `url(${url}) no-repeat center`,
|
|
WebkitMaskSize: '100%',
|
|
backgroundColor: color,
|
|
};
|
|
};
|