UNPKG

antd

Version:

An enterprise-class UI design language and React components implementation

17 lines (16 loc) 539 B
import React from 'react'; import type { BorderBeamColor } from './util'; export type { BorderBeamColor, BorderBeamGradient } from './util'; export interface BorderBeamProps { prefixCls?: string; className?: string; style?: React.CSSProperties; children?: React.ReactNode; color?: BorderBeamColor; duration?: number; lineWidth?: number | string; outset?: number | string; size?: number | string; } declare const BorderBeam: React.FC<React.PropsWithChildren<BorderBeamProps>>; export default BorderBeam;