UNPKG

react-fdt-gradient

Version:

A React component library for gradient-based designs, including text, background, and border gradients.

10 lines (9 loc) 300 B
import React, { CSSProperties } from 'react'; interface GradientBackgroundProps { children: React.ReactNode; gradientColors: string[]; style?: CSSProperties; className?: string; } declare const GradientBackground: React.FC<GradientBackgroundProps>; export default GradientBackground;