reaviz
Version:
Data Visualization using React
14 lines (13 loc) • 339 B
TypeScript
import { FC } from 'react';
import { MaskProps } from './Mask';
export interface StripesProps extends MaskProps {
/**
* Unique id for the pattern. Set internally by the parent component.
*/
id?: string;
/**
* Fill color of the stripe.
*/
fill?: string;
}
export declare const Stripes: FC<StripesProps>;