fomantic-ui-react
Version:
Fomantic-UI React -- A React Component Library.
17 lines (16 loc) • 859 B
TypeScript
/// <reference types="react" />
import { ShapeProps } from './type';
import { ShapeSidesProps } from '.';
declare const Shape: {
({ as, className, behavior, type, duration, change, children, onStart, onComplete, ...props }: ShapeProps): import("react").ReactElement<any, string | import("react").JSXElementConstructor<any>>;
displayName: string;
Sides: {
({ as, className, behavior, change, duration, width, height, children, ...props }: ShapeSidesProps): import("react").ReactElement<any, string | import("react").JSXElementConstructor<any>>;
displayName: string;
};
Side: {
({ as, className, active, hidden, children, ...props }: import("./type").ShapeSideProps): import("react").ReactElement<any, string | import("react").JSXElementConstructor<any>>;
displayName: string;
};
};
export default Shape;