Thick Arrow Down
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 thick-arrow-down --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 ThickArrowDownIcon({ disableHover, className }: Props) {
const classes = [
"ai-thick-arrow-down-icon",
disableHover ? "no-hover" : "",
className ?? "",
]
.filter(Boolean)
.join(" ");
return (
<>
<style>{`
.ai-thick-arrow-down-icon {
width: 1em;
height: 1em;
display: inline-block;
cursor: pointer;
overflow: visible;
}
.ai-thick-arrow-down-icon * {
transform-box: fill-box;
}
.ai-thick-arrow-down-icon.no-hover * {
transform: none;
opacity: 1;
animation: none;
}
.ai-thick-arrow-down-icon .arrow {
transform-origin: center;
}
.ai-thick-arrow-down-icon:not(.no-hover):hover .arrow {
animation: ai-thick-arrow-down-bounce 700ms ease-in-out;
}
@keyframes ai-thick-arrow-down-bounce {
0%, 50%, 100% { transform: translateY(0); }
25%, 75% { transform: translateY(+1.5px); }
}
`}</style>
<svg
xmlns="http://www.w3.org/2000/svg"
className={classes}
viewBox="0 0 15 15"
fill="none"
>
<path className="arrow" fillRule="evenodd" d="M9.60055 3.00977C9.82851 3.05629 9.99996 3.25829 9.99996 3.5V6H12.5C12.6873 6 12.8586 6.10495 12.9443 6.27148C13.0299 6.438 13.016 6.63864 12.9072 6.79102L7.90719 13.791C7.81333 13.9224 7.6614 14 7.49996 14C7.33852 14 7.18659 13.9224 7.09273 13.791L2.09273 6.79102C1.9839 6.63864 1.96999 6.438 2.05563 6.27148C2.14133 6.10495 2.31267 6 2.49996 6H4.99996V3.5L5.00973 3.39941C5.05625 3.17145 5.25825 3 5.49996 3H9.49996L9.60055 3.00977ZM5.99996 6.5C5.99996 6.77614 5.7761 7 5.49996 7H3.47262L7.49996 12.6387L11.5273 7H9.49996C9.22382 7 8.99996 6.77614 8.99996 6.5V4H5.99996V6.5Z" fill="currentColor"/>
</svg>
</>
);
}