lightswind
Version:
A collection of beautifully crafted React Components, Blocks & Templates for Modern Developers. Create stunning web applications effortlessly by using our 160+ professional and animated react components.
26 lines (25 loc) • 873 B
TypeScript
import React, { CSSProperties, PropsWithChildren } from "react";
export interface ElectroBorderProps extends PropsWithChildren {
/** Border color */
borderColor?: string;
/** Border thickness in px */
borderWidth?: number;
/** Animation distortion intensity */
distortion?: number;
/** Animation speed multiplier */
animationSpeed?: number;
/** Border radius */
radius?: string | number;
/** 🔘 Enable glow effect (default true) */
glow?: boolean;
/** 🔘 Enable aura background (default true) */
aura?: boolean;
/** 🔘 Enable all effects (turn off to show only electric border) */
effects?: boolean;
/** Glow blur intensity */
glowBlur?: number;
className?: string;
style?: CSSProperties;
}
export declare const ElectroBorder: React.FC<ElectroBorderProps>;
export default ElectroBorder;