Devendra174's picture
Upload folder using huggingface_hub
1e92f2d verified
raw
history blame
311 Bytes
import clsx from 'clsx'
import { Heading, HeadingProps } from './Heading'
import { gradientHeader } from './GradientHeader.css'
const GradientHeader = ({ className, ...restProps }: HeadingProps) => {
return <Heading className={clsx(gradientHeader, className)} {...restProps} />
}
export { GradientHeader }