Box Model
Install
npm install @svg-animated-icons/reactCLI
Copy an icon component straight into your project — shadcn-style. Replace {icon} with an icon name like arrow-left.
terminal
npx @svg-animated-icons/cli add {icon} --react| Flag | Description |
|---|---|
--dest <dir> | Destination directory (default: components/animated-icons) |
Or copy the component with the CLI
CLI
npx @svg-animated-icons/cli add box-model --reactCode
React
// Generated by @svg-animated-icons/cli
// You own this file — edit it freely.
import React from "react";
type Props = {
disableHover?: boolean;
className?: string;
};
export function BoxModelIcon({ disableHover, className }: Props) {
const classes = [
"ai-box-model-icon",
disableHover ? "no-hover" : "",
className ?? "",
]
.filter(Boolean)
.join(" ");
return (
<>
<style>{`
.ai-box-model-icon {
width: 1em;
height: 1em;
display: inline-block;
cursor: pointer;
overflow: visible;
}
.ai-box-model-icon * {
transform-box: fill-box;
}
.ai-box-model-icon .inner {
transform-origin: center;
}
.ai-box-model-icon:not(.no-hover):hover .inner {
animation: ai-box-model-motion-1 700ms ease-in-out;
}
.ai-box-model-icon.no-hover * {
transform: none;
opacity: 1;
animation: none;
}
@keyframes ai-box-model-motion-1 {
0%,
100% {
transform: translate(0, 0);
}
33% {
transform: translate(-1px, -1px);
}
66% {
transform: translate(1px, 1px);
}
}
`}</style>
<svg
xmlns="http://www.w3.org/2000/svg"
className={classes}
viewBox="0 0 15 15"
fill="none"
>
<rect className="outer" x="1.5" y="1.5" width="12" height="12" stroke="currentColor" strokeWidth="1"/>
<rect className="inner" x="4.5" y="4.5" width="6" height="6" stroke="currentColor" strokeWidth="1"/>
</svg>
</>
);
}