mirror of https://github.com/ANL-CEEESA/RELOG.git
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
15 lines
569 B
15 lines
569 B
import { BackgroundVariant } from './types';
|
|
type LinePatternProps = {
|
|
dimensions: [number, number];
|
|
variant: BackgroundVariant;
|
|
lineWidth?: number;
|
|
className?: string;
|
|
};
|
|
export declare function LinePattern({ dimensions, lineWidth, variant, className }: LinePatternProps): import("react/jsx-runtime").JSX.Element;
|
|
type DotPatternProps = {
|
|
radius: number;
|
|
className?: string;
|
|
};
|
|
export declare function DotPattern({ radius, className }: DotPatternProps): import("react/jsx-runtime").JSX.Element;
|
|
export {};
|
|
//# sourceMappingURL=Patterns.d.ts.map
|