UNPKG

@useloops/design-system

Version:

The official React based Loops design system

11 lines (8 loc) 333 B
import { Theme } from '@mui/material'; interface BackgroundOptions { texture?: 'none' | 'noise1'; gradient?: 'tone1' | 'tone2' | 'tone3' | 'tone3_lowOpacity' | 'tone4'; } declare const backgroundCreator: (theme: Theme, options: BackgroundOptions) => string; export { backgroundCreator }; export type { BackgroundOptions };