1 |
|
2 |
|
3 |
|
4 | import React, { SVGProps } from 'react';
|
5 | import { AnimationDuration, AnimationTiming } from '../util/types';
|
6 | interface 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 | }
|
18 | export type Props = SVGProps<SVGPathElement> & TrapezoidProps;
|
19 | export declare const Trapezoid: React.FC<Props>;
|
20 | export {};
|