@lobehub/ui
Version:
Lobe UI is an open-source UI component library for building AIGC web apps
12 lines (11 loc) • 337 B
TypeScript
/// <reference types="react" />
import { DivProps } from "../../types";
export interface SpotlightProps extends DivProps {
/**
* @description The size of the spotlight circle
* @default 64
*/
size?: number;
}
declare const Spotlight: import("react").NamedExoticComponent<SpotlightProps>;
export default Spotlight;