BlockDex

Components

Registries

Free blocks

Method

BlockDex

Components

Registries

Free blocks

Method

Open API

BlockDex

Components

Registries

Free blocks

Method

Open API

Components/animateicons/hu-notification-off

hu-notification-off

animateicons/hu-notification-off
FreeComponent

animateicons publishes no description for this item.

Install it

npx shadcn@latest add https://animateicons.in/r/hu-notification-off.json

Source

notification-off-icon.tsxanimateicons.in/r/hu-notification-off.json
1"use client";
2
3import { cn } from "@/lib/utils";
4import type { Variants } from "motion/react";
5import {
6 LazyMotion,
7 domMin,
8 m,
9 useAnimation,
10 useReducedMotion,
11} from "motion/react";
12import {
13 forwardRef,
14 useCallback,
15 useImperativeHandle,
16 useRef,
17 type HTMLAttributes,
18} from "react";
19export interface NotificationOffIconHandle {
20 startAnimation: () => void;
21 stopAnimation: () => void;
22}
23
24interface NotificationOffIconProps extends Omit<
25 HTMLAttributes<HTMLDivElement>,
26 | "color"
27 | "onDrag"
28 | "onDragStart"
29 | "onDragEnd"
30 | "onAnimationStart"
31 | "onAnimationEnd"
32 | "onAnimationIteration"
33> {
34 size?: number;
35 duration?: number;
36 isAnimated?: boolean;
37 color?: string;
38}
39
40const NotificationOffIcon = forwardRef<
41 NotificationOffIconHandle,
42 NotificationOffIconProps
43>(
44 (
45 {
46 onMouseEnter,
47 onMouseLeave,
48 className,
49 size = 24,
50 duration = 1,
51 isAnimated = true,
52 color,
53 ...props
54 },
55 ref,
56 ) => {
57 const controls = useAnimation();
58 const reduced = useReducedMotion();
59 const isControlled = useRef(false);
60
61 useImperativeHandle(ref, () => {
62 isControlled.current = true;
63 return {
64 startAnimation: () =>
65 reduced ? controls.start("normal") : controls.start("animate"),
66 stopAnimation: () => controls.start("normal"),
67 };
68 });
69
70 const handleEnter = useCallback(
71 (e?: React.MouseEvent<HTMLDivElement>) => {
72 if (!isAnimated || reduced) return;
73 if (!isControlled.current) controls.start("animate");
74 else onMouseEnter?.(e as any);
75 },
76 [controls, reduced, isAnimated, onMouseEnter],
77 );
78
79 const handleLeave = useCallback(
80 (e: React.MouseEvent<HTMLDivElement>) => {
81 if (!isControlled.current) controls.start("normal");
82 else onMouseLeave?.(e as any);
83 },
84 [controls, onMouseLeave],
85 );
86
87 const bellVariants: Variants = {
88 normal: { rotate: 0 },
89 animate: {
90 rotate: [0, 4, -6, 4, -2, 0],
91 transition: {
92 duration: 1 * duration,
93 ease: "easeInOut",
94 times: [0, 0.16, 0.36, 0.58, 0.8, 1],
95 },
96 },
97 };
98
99 const clapperVariants: Variants = {
100 normal: { x: 0 },
101 animate: {
102 x: [0, 1, -1.5, 1, -0.5, 0],
103 transition: {
104 duration: 1 * duration,
105 ease: "easeInOut",
106 times: [0, 0.16, 0.36, 0.58, 0.8, 1],
107 delay: 0.08 * duration,
108 },
109 },
110 };
111
112 const slashVariants: Variants = {
113 normal: { pathLength: 1, opacity: 1 },
114 animate: {
115 pathLength: [0, 1],
116 opacity: [0, 1],
117 transition: {
118 pathLength: {
119 duration: 0.9 * duration,
120// … truncated

What it pulls in

npm packages

  • motion

Files it writes

  • icons/huge/notification-off-icon.tsx

Facts

Registry
animateicons
Type
registry:ui
Access
Free
Files written
1
Licence
MIT
In the index
at or before 2026-08-01
Last confirmed
today

Go to the source

animateicons.in Avijit07x/animateicons on GitHub Raw registry item This item as JSON

More from animateicons

All 542 items
Same registry, same kind — the ones you would have found next
ComponentRegistryKindAccessInstallsCommand
hu-activityhu-activityanimateiconsComponentsFree1 dep
hu-bookmarkhu-bookmarkanimateiconsComponentsFree1 dep
hu-bookmark-checkhu-bookmark-checkanimateiconsComponentsFree1 dep
hu-bookmark-minushu-bookmark-minusanimateiconsComponentsFree1 dep
hu-bookmark-removehu-bookmark-removeanimateiconsComponentsFree1 dep
hu-checkhu-checkanimateiconsComponentsFree1 dep
hu-check-checkhu-check-checkanimateiconsComponentsFree1 dep
hu-chevron-righthu-chevron-rightanimateiconsComponentsFree1 dep

Also from Kynth Studios

Built for the same person as BlockDex

SkillWorks

Claude Code skills and plugins, scored

skillworks.kynth.studio

RuleStack

AGENTS.md gallery and agent-config comparison

rulestack.kynth.studio

ToolDrift

What the AI coding tools changed last night

tooldrift.kynth.studio

The studio list

One product, taken apart, once a month

Kynth Studios pulls one shipped product open every month — what it does, what it cost to build, what the pipeline behind it looks like, and what the numbers did. One email a month, nothing in between.

Double opt-in — we send one confirmation link and nothing else until you click it.

BlockDex

Built by

Kynth Studios

the studio behind SkillWorks, RuleStack and ToolDrift

part of Toolproof, the measurement layer for AI agent tooling

Index

Components
Registries
Method
Open API

Guides

shadcn component libraries
Best shadcn registries
Free shadcn blocks

Reference

Corpus counts
Crawl health
hello@kynth.studio
Privacy
Terms

© 2026 BlockDex. A Kynth Studios product. Changelog

BlockDex

The studio list

One product, taken apart, once a month

Kynth Studios pulls one shipped product open every month — what it does, what it cost to build, what the pipeline behind it looks like, and what the numbers did. One email a month, nothing in between.

Double opt-in — we send one confirmation link and nothing else until you click it.

BlockDex

Built by

Kynth Studios

the studio behind SkillWorks, RuleStack and ToolDrift

part of Toolproof, the measurement layer for AI agent tooling

Index

Components
Registries
Method
Open API

Guides

shadcn component libraries
Best shadcn registries
Free shadcn blocks

Reference

Corpus counts
Crawl health
hello@kynth.studio
Privacy
Terms

© 2026 BlockDex. A Kynth Studios product. Changelog

BlockDex

The studio list

One product, taken apart, once a month

Kynth Studios pulls one shipped product open every month — what it does, what it cost to build, what the pipeline behind it looks like, and what the numbers did. One email a month, nothing in between.

Double opt-in — we send one confirmation link and nothing else until you click it.

BlockDex

Built by

Kynth Studios

the studio behind SkillWorks, RuleStack and ToolDrift

part of Toolproof, the measurement layer for AI agent tooling

Index

Components
Registries
Method
Open API

Guides

shadcn component libraries
Best shadcn registries
Free shadcn blocks

Reference

Corpus counts
Crawl health
hello@kynth.studio
Privacy
Terms

© 2026 BlockDex. A Kynth Studios product. Changelog

BlockDex