Backlight Glow
Backlight Glow is a React and Tailwind CSS component from Magic UI, licensed MIT. Copy it and paste it into your project.
Magic UI
MIT
other
What it is
Backlight Glow is a React and Tailwind CSS component from Magic UI, 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 Magic UI and is redistributed under the MIT licence, which permits commercial use. The copyright notice travels with the code.
Backlight Glow
import { useId, type ReactElement } from "react"
type BacklightProps = {
children?: ReactElement
className?: string
blur?: number
}
export function Backlight({ blur = 20, children, className }: BacklightProps) {
const id = useId()
return (
<div className={className}>
<svg width="0" height="0" aria-hidden="true">
<filter id={id} y="-50%" x="-50%" width="200%" height="200%">
<feGaussianBlur
in="SourceGraphic"
stdDeviation={blur}
result="blurred"
></feGaussianBlur>
<feColorMatrix
type="saturate"
in="blurred"
values="4"
></feColorMatrix>
<feComposite in="SourceGraphic" operator="over"></feComposite>
</filter>
</svg>
<div style={{ filter: `url(#${id})` }}>{children}</div>
</div>
)
}