Framer Logo
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 framer-logo --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 FramerLogoIcon({ disableHover, className }: Props) {
const classes = [
"ai-framer-logo-icon",
disableHover ? "no-hover" : "",
className ?? "",
]
.filter(Boolean)
.join(" ");
return (
<>
<style>{`
.ai-framer-logo-icon {
width: 1em;
height: 1em;
display: inline-block;
cursor: pointer;
overflow: visible;
}
.ai-framer-logo-icon * {
transform-box: fill-box;
}
.ai-framer-logo-icon.no-hover * {
transform: none;
opacity: 1;
animation: none;
}
.ai-framer-logo-icon .logo {
transform-origin: center;
}
.ai-framer-logo-icon:not(.no-hover):hover .logo {
animation: ai-framer-logo-motion 700ms ease-in-out;
}
@keyframes ai-framer-logo-motion {
0%, 100% { transform: translateY(0); }
50% { transform: translateY(-1px); }
}
`}</style>
<svg
xmlns="http://www.w3.org/2000/svg"
className={classes}
viewBox="0 0 15 15"
fill="none"
>
<path className="logo" d="M11.6006 1.00706C11.8285 1.05359 12 1.25559 12 1.4973V5.50023C11.9999 5.77627 11.7761 6.00022 11.5 6.00023H8.63574L11.5293 9.16234L11.5742 9.21996C11.6695 9.3609 11.6871 9.54261 11.6172 9.7014C11.5373 9.88272 11.3583 10.0001 11.1602 10.0002H8V13.5002C7.99991 13.7024 7.87818 13.8848 7.69141 13.9621C7.50462 14.0395 7.28948 13.9967 7.14648 13.8537L3.14648 9.85374C3.05277 9.76003 3.00006 9.63276 3 9.50023V5.50023L3.00977 5.39964C3.05621 5.17157 3.25821 5.00023 3.5 5.00023H6.36523L3.4707 1.83421C3.33737 1.68805 3.30313 1.47723 3.38281 1.29613C3.46269 1.11485 3.64175 0.99738 3.83984 0.997299H11.5L11.6006 1.00706ZM7 12.2932V10.0002H4.70703L7 12.2932ZM4 9.00023H10.0254L7.28027 6.00023H4V9.00023ZM7.7207 5.00023H11V1.9973H4.97461L7.7207 5.00023Z" fill="currentColor"/>
</svg>
</>
);
}