UNPKG

reaviz

Version:

Data Visualization using React

13 lines (12 loc) 283 B
import { FC } from 'react'; export interface MaskProps { /** * Unique id for the mask. Set internally by the parent component. */ id?: string; /** * Fill applied to the mask rectangle. */ fill?: string; } export declare const Mask: FC<MaskProps>;