UNPKG

@ebay/ui-core-react

Version:

Skin components build off React

8 lines 313 B
import { FC, HTMLProps, ReactNode } from "react"; export type EbaySectionTitleProps = Omit<HTMLProps<HTMLDivElement>, "title"> & { href?: string; ctaText?: ReactNode; }; declare const EbaySectionTitle: FC<EbaySectionTitleProps>; export default EbaySectionTitle; //# sourceMappingURL=section-title.d.ts.map