UNPKG

antd

Version:

An enterprise-class UI design language and React components implementation

14 lines (13 loc) 455 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; outset?: number | string; } declare const BorderBeam: React.FC<React.PropsWithChildren<BorderBeamProps>>; export default BorderBeam;