NeoTerm UI

Glow

Neon glow effects for text, containers, and lines.

Import

import { GlowText, GlowBox, NeonLine, RippleButton } from "neoterm-ui";

GlowText

<GlowText color="green">Neon green text</GlowText>
<GlowText color="cyan" as="h1">Cyan heading</GlowText>
PropTypeDefaultDescription
color"green" | "cyan" | "red" | "amber" | "magenta""green"Glow color.
asElementType"span"HTML element to render.
childrenReactNodeText content.

GlowBox

<GlowBox color="cyan" pulse>
  <p>Glowing container with pulse</p>
</GlowBox>
PropTypeDefaultDescription
color"green" | "cyan" | "red" | "amber" | "magenta""green"Border glow color.
pulsebooleanfalseAnimated pulse effect.
childrenReactNodeBox content.

NeonLine

<NeonLine color="magenta" />
PropTypeDefaultDescription
color"green" | "cyan" | "red" | "amber" | "magenta""green"Line glow color.

RippleButton

<RippleButton>Click me</RippleButton>
PropTypeDefaultDescription
rippleColorstringRipple animation color.
...restButtonHTMLAttributesStandard button props.