Gooey Svg Filter
fancy/gooey-svg-filterFreeComponent
A ui component.
Install it
npx shadcn@latest add https://www.fancycomponents.dev/r/gooey-svg-filter.jsonSource
1const GooeySvgFilter = ({2 id = "gooey-filter",3 strength = 10,4}: {5 id?: string6 strength?: number7}) => {8 return (9 <svg className="hidden absolute">10 <defs>11 <filter id={id}>12 <feGaussianBlur13 in="SourceGraphic"14 stdDeviation={strength}15 result="blur-sm"16 />17 <feColorMatrix18 in="blur-sm"19 type="matrix"20 values="1 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 19 -9"21 result="goo"22 />23 <feComposite in="SourceGraphic" in2="goo" operator="atop" />24 </filter>25 </defs>26 </svg>27 )28}2930export default GooeySvgFilter
Files it writes
More from fancy
All 158 items| Component | Registry | Kind | Access | Installs | Command |
|---|---|---|---|---|---|
| Animated Gradient With Svganimated-gradient-with-svg | fancy | Components | Free | no deps | |
| Basic Number Tickerbasic-number-ticker | fancy | Components | Free | 1 dep | |
| Box Carouselbox-carousel | fancy | Components | Free | 1 dep | |
| Breathing Textbreathing-text | fancy | Components | Free | 1 dep | |
| Circling Elementscircling-elements | fancy | Components | Free | 1 dep | |
| Css Boxcss-box | fancy | Components | Free | 1 dep | |
| Cursor Attractor And Gravitycursor-attractor-and-gravity | fancy | Components | Free | 5 deps | |
| Drag Elementsdrag-elements | fancy | Components | Free | 1 dep |
