
3D Extruded Buildings & Urban Footprints
Real-world 3D building extrusions with dynamic sunlight shadows, terrain DEM elevations, and pitch/bearing camera controls.
border-beamuiRotating conic light beam that traces the border ring of its parent. Place inside a `relative` parent (e.g. a Card); the overlay is absolutely positioned, pointer-events-none, and masked down to a ring of `size` px thickness. Tune `duration`, `delay`, and `color`, or set `paused` to freeze it. Keyframes and the `--uipkge-border-angle` @property ship in the canonical tailwind tokens — re-pull init/tailwind if upgrading.
Also available for Vue ->$pnpm dlx shadcn@latest add https://uipkge.dev/r/react/border-beam.json$npx shadcn@latest add https://uipkge.dev/r/react/border-beam.json$yarn dlx shadcn@latest add https://uipkge.dev/r/react/border-beam.json$bunx shadcn@latest add https://uipkge.dev/r/react/border-beam.jsonnpx shadcn@latest add @uipkge-react/border-beamInstalls to:components/ui/border-beam/| Name | Type / Values | Default | Required |
|---|---|---|---|
sizeRing thickness in px. | number | — | optional |
durationSeconds per revolution. | number | — | optional |
delaySeconds; negative values offset the beam's starting position around the ring. | number | — | optional |
colorAny CSS color for the beam highlight. | string | — | optional |
pausedFreeze the beam in place (animation-play-state: paused). | boolean | — | optional |
'use client'
import * as React from 'react'
import { cn } from '@/lib/utils'
export interface BorderBeamProps extends React.HTMLAttributes<HTMLSpanElement> {
/** Ring thickness in px. */
size?: number
/** Seconds per revolution. */
duration?: number
/** Seconds; negative values offset the beam's starting position around the ring. */
delay?: number
/** Any CSS color for the beam highlight. */
color?: string
/** Freeze the beam in place (animation-play-state: paused). */
paused?: boolean
}
const BorderBeam = React.forwardRef<HTMLSpanElement, BorderBeamProps>(
(
{ className, size = 2, duration = 6, delay = 0, color = 'var(--primary)', paused = false, style, ...props },
ref,
) => {
// Honor prefers-reduced-motion by rendering a static beam at a fixed angle.
const [reducedMotion, setReducedMotion] = React.useState(false)
React.useEffect(() => {
const query = window.matchMedia('(prefers-reduced-motion: reduce)')
setReducedMotion(query.matches)
const onChange = (event: MediaQueryListEvent) => setReducedMotion(event.matches)
query.addEventListener('change', onChange)
return () => query.removeEventListener('change', onChange)
}, [])
return (
<span
ref={ref}
data-uipkge=""
data-slot="border-beam"
aria-hidden="true"
className={cn('pointer-events-none absolute inset-0 rounded-[inherit]', className)}
style={{
padding: `${size}px`,
background: reducedMotion
? `conic-gradient(from 45deg, transparent 0deg, transparent 290deg, ${color} 330deg, transparent 360deg)`
: `conic-gradient(from var(--uipkge-border-angle), transparent 0deg, transparent 290deg, ${color} 330deg, transparent 360deg)`,
animation: reducedMotion ? 'none' : `uipkge-border-beam ${duration}s linear infinite ${delay}s`,
animationPlayState: !reducedMotion && paused ? 'paused' : undefined,
WebkitMask: 'linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0)',
WebkitMaskComposite: 'xor',
mask: 'linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0)',
maskComposite: 'exclude',
...style,
}}
{...props}
/>
)
},
)
BorderBeam.displayName = 'BorderBeam'
export { BorderBeam }
export { BorderBeam, type BorderBeamProps } from './BorderBeam'
Raw manifest:https://uipkge.dev/r/react/border-beam.json