Arrow Bottom Left
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 arrow-bottom-left --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 ArrowBottomLeftIcon({ disableHover, className }: Props) {
const classes = [
"ai-arrow-bottom-left-icon",
disableHover ? "no-hover" : "",
className ?? "",
]
.filter(Boolean)
.join(" ");
return (
<>
<style>{`
.ai-arrow-bottom-left-icon {
width: 1em;
height: 1em;
display: inline-block;
cursor: pointer;
overflow: visible;
}
.ai-arrow-bottom-left-icon * {
transform-box: fill-box;
transition: transform 320ms cubic-bezier(0.34, 1.56, 0.64, 1), opacity 220ms ease;
}
.ai-arrow-bottom-left-icon .arrow {
transform-origin: center;
}
.ai-arrow-bottom-left-icon:not(.no-hover):hover .arrow {
animation: ai-arrow-bottom-left-motion-1 700ms ease-in-out;
}
.ai-arrow-bottom-left-icon.no-hover * {
transform: none;
opacity: 1;
animation: none;
}
@keyframes ai-arrow-bottom-left-motion-1 {
0%,
50%,
100% {
transform: translate(0, 0);
}
25%,
75% {
transform: translate(-1.25px, 1.25px);
}
}
`}</style>
<svg
xmlns="http://www.w3.org/2000/svg"
className={classes}
viewBox="0 0 15 15"
fill="none"
>
<path className="arrow" d="M11.2 3.8L3.7 11.3M3.7 6.1V11.3H8.9" stroke="currentColor" strokeWidth="1.15" strokeLinecap="round" strokeLinejoin="round"/>
</svg>
</>
);
}