UNPKG

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