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