rumble-charts
Version:
Truly declarative React charts components
10 lines (9 loc) • 386 B
TypeScript
import type { ReactElement } from 'react';
export declare type DropShadowProps = {
id: string;
blurIn?: 'SourceAlpha' | 'SourceGraphic' | 'BackgroundImage' | 'BackgroundAlpha' | 'FillPaint' | 'StrokePaint';
blurDeviation?: number;
dx?: number;
dy?: number;
};
export declare function DropShadow({ id, dx, dy, blurDeviation, blurIn }: DropShadowProps): ReactElement;