Gooey SVG Filter
Gooey SVG Filter is a React and Tailwind CSS component from Fancy Components, licensed MIT. Copy it and paste it into your project.
Fancy Components
MIT
other
What it is
Gooey SVG Filter is a React and Tailwind CSS component from Fancy Components, 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 Fancy Components and is redistributed under the MIT licence, which permits commercial use. The copyright notice travels with the code.
Gooey SVG Filter
const GooeySvgFilter = ({
id = "gooey-filter",
strength = 10,
}: {
id?: string
strength?: number
}) => {
return (
<svg className="hidden absolute">
<defs>
<filter id={id}>
<feGaussianBlur
in="SourceGraphic"
stdDeviation={strength}
result="blur-sm"
/>
<feColorMatrix
in="blur-sm"
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 default GooeySvgFilter