import React from 'react';
type LinePatternProps = {
dimensions: [number, number];
lineWidth?: number;
color: string;
};
export function LinePattern({
color,
dimensions,
lineWidth,
}: LinePatternProps) {
return (
);
}
type DotPatternProps = {
radius: number;
color: string;
};
export const DotPattern = ({ color, radius }: DotPatternProps) => {
return ;
};