Files
jobtrackingapp/vendor/saasable-ui-main/uikit/react/src/utils/getBackgroundDots.jsx
T
2026-03-21 11:55:27 +01:00

8 lines
274 B
React

export function getBackgroundDots(fill = 'gray', dotSize = 2, spacing = 30) {
return {
backgroundImage: `radial-gradient(circle ${dotSize}px, ${fill} ${dotSize}px, transparent 0)`,
backgroundSize: `${spacing}px ${spacing}px`,
backgroundRepeat: 'repeat'
};
}