@sikka/hawa
Version:
Modern UI Kit made with Tailwind
17 lines (14 loc) • 477 B
TypeScript
import React from 'react';
declare const GlowCapture: ({ className, size, ...rest }: {
[x: string]: any;
className?: string | undefined;
size?: number | undefined;
}) => React.JSX.Element;
declare const Glow: ({ className, style, color, debug, ...rest }: {
[x: string]: any;
className?: string | undefined;
style?: {} | undefined;
color?: string | undefined;
debug?: boolean | undefined;
}) => React.JSX.Element;
export { Glow, GlowCapture };