isometric-react
Version:
Isometric styling library made in React with as much flexibility over customization as possible. Rewrite of https://morgancaron.github.io/IsometricSass/ .
16 lines (15 loc) • 663 B
TypeScript
/// <reference types="react" />
import { BorderProps } from "./BorderProps";
import { EdgeProps } from "./EdgeProps";
import { ShadowProps } from "./ShadowProps";
import { PositionProps } from "./PositionProps";
import { AnimationProps } from "./AnimationProps";
import { ShadowAnimationProps } from "./ShadowAnimationProps";
import { RotateProps } from "./RotateProps";
export interface IsometricPlaneProps extends BorderProps, EdgeProps, ShadowProps, PositionProps, AnimationProps, ShadowAnimationProps, RotateProps {
width: number;
height: number;
color: string;
children?: JSX.Element | JSX.Element[];
className?: string;
}