UNPKG

@minskylab/realshadow

Version:

A simple library to give shadows based on the current real time for any html element.

12 lines (10 loc) 239 B
export interface ShadowProps { phi: number; fromHour: number; toHour: number; distance: number; blurRadius: number; color: string; kind: ShadowKind; } export type ShadowKind = "text" | "box" | "both" | "drop";