Component · Free prompt
Gooey Filter
Gooey Filter is a complete, paste-ready component build-prompt — a full art-direction spec for Lovable, Bolt, v0, Cursor and Claude. It's free: copy it below and paste it into your builder.

Gooey FilterComponent · free prompt · copy-paste
An svg filter component that creates a gooey effect on the background. Can be used to create fluid interfaces or rounded-at-all-corners panels. Limited support for Safari.
— Install —
npx shadcn@latest add "https://21st.dev/r/gooey-filter"
— Component source (Gooey Filter.tsx) —
const GooeyFilter = ({
id = "goo-filter",
strength = 10,
}: {
id?: string
strength?: number
}) => {
return (
<svg className="hidden absolute">
<defs>
<filter id={id}>
<feGaussianBlur
in="SourceGraphic"
stdDeviation={strength}
result="blur"
/>
<feColorMatrix
in="blur"
type="matrix"
values="1 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 19 -9"
result="goo"
/>
<feComposite in="SourceGraphic" in2="goo" operator="atop" />
</filter>
</defs>
</svg>
)
}
export { GooeyFilter }
Browse & preview free Unlock everything — from $19/mo





