UNPKG

@atlrdsgn/kit

Version:

An ever–expanding library of React components, primitives, and tools

18 lines (17 loc) • 576 B
import { BannerSize, BannerVariant, BannerVariants, BannerBorderBoolean } from './banner.css'; import { default as React } from 'react'; interface BaseBannerProps { children: React.ReactNode; /** * * className to be passed to the section. */ className?: string; size?: BannerSize; variant?: BannerVariant; border?: BannerBorderBoolean; } export type BannerProps = BaseBannerProps & BannerVariants & React.HTMLAttributes<HTMLDivElement>; export declare const Banner: React.FC<BannerProps>; export {}; //# sourceMappingURL=banner.d.ts.map