Squiggle Arrow
Squiggle Arrow is a React and Tailwind CSS component from Cult UI, licensed MIT. Copy it and paste it into your project.
Cult UI
MIT
other
What it is
Squiggle Arrow is a React and Tailwind CSS component from Cult UI, licensed MIT. Copy it and paste it into your project.
How to use it
Open it in the catalogue, press copy, and paste it into your project. The prompt you copy carries the code and the rules that tell your agent to reproduce it without changing anything.
Five free copies a month. No card.
No packages beyond the project baseline
Licence
This component comes from Cult UI and is redistributed under the MIT licence, which permits commercial use. The copyright notice travels with the code.
Squiggle Arrow
import { cn } from "@/lib/utils"
interface SquigglyArrowProps {
width?: number
height?: number
strokeWidth?: number
className?: string
direction?: "right" | "left" | "up" | "down"
variant?: "wavy" | "bouncy" | "smooth"
}
export default function SquigglyArrow({
width = 200,
height = 100,
strokeWidth = 2.5,
className,
direction = "right",
variant = "wavy",
}: SquigglyArrowProps) {
const paths = {
wavy: {
body: "M 15 50 Q 35 35, 55 48 T 95 52 Q 115 48, 135 50 Q 145 52, 155 48",
head: "M 155 48 Q 147 44, 143 42 M 155 48 Q 148 53, 144 56",
},
bouncy: {
body: "M 15 50 Q 45 32, 65 50 Q 85 68, 105 50 Q 125 32, 145 50 Q 152 54, 158 50",
head: "M 158 50 Q 149 45, 145 43 M 158 50 Q 150 56, 146 59",
},
smooth: {
body: "M 15 50 Q 60 38, 100 48 Q 135 56, 158 50",
head: "M 158 50 Q 149 45, 145 43 M 158 50 Q 150 56, 146 59",
},
}
const rotations = {
right: "rotate(0)",
left: "rotate(180 100 50)",
down: "rotate(90 100 50)",
up: "rotate(-90 100 50)",
}
const selectedPath = paths[variant]
const rotation = rotations[direction]
return (
<svg
width={width}
height={height}
viewBox="-10 -10 220 120"
fill="none"
xmlns="http://www.w3.org/2000/svg"
className={cn("text-foreground", className)}
>
<title>Squiggly arrow</title>
<g transform={rotation}>
{/* Squiggly arrow body */}
<path
d={selectedPath.body}
stroke="currentColor"
strokeWidth={strokeWidth}
strokeLinecap="round"
fill="none"
/>
{/* Arrow head */}
<path
d={selectedPath.head}
stroke="currentColor"
strokeWidth={strokeWidth}
strokeLinecap="round"
/>
</g>
</svg>
)
}