UNPKG

538 BTypeScriptView Raw
1import React, { SVGProps } from 'react';
2import { AnimationDuration, AnimationTiming } from '../util/types';
3interface TrapezoidProps {
4 className?: string;
5 x?: number;
6 y?: number;
7 upperWidth?: number;
8 lowerWidth?: number;
9 height?: number;
10 isUpdateAnimationActive?: boolean;
11 animationBegin?: number;
12 animationDuration?: AnimationDuration;
13 animationEasing?: AnimationTiming;
14}
15export type Props = SVGProps<SVGPathElement> & TrapezoidProps;
16export declare const Trapezoid: React.FC<Props>;
17export {};