isometric-react
Version:
Isometric styling library made in React with as much flexibility over customization as possible. Rewrite of https://morgancaron.github.io/IsometricSass/ .
5 lines (4 loc) • 546 B
JavaScript
import React from "react";
import IsometricGridStyles from "../../styles/IsometricGridStyles";
const IsometricGrid = ({ size, sizeMultiplier, color, lineweight, children, shadow, position, animation, shadowAnimation, rotate, className, }) => (React.createElement(IsometricGridStyles, { size: size, sizeMultiplier: sizeMultiplier, color: color, lineweight: lineweight, shadow: shadow, position: position, animation: animation, shadowAnimation: shadowAnimation, rotate: rotate, className: className }, children));
export default IsometricGrid;