UNPKG

@xyo-network/react-shared

Version:

Common React library for all XYO projects that use React

26 lines 774 B
import type { FlexBoxProps } from '@xylabs/react-flexbox'; import type { ReactElement } from 'react'; import React from 'react'; export interface BasicHeroProps extends FlexBoxProps { backgroundColor?: string; backgroundImage?: string; button1Href?: string; button1Text?: string; button1To?: string; button2Href?: string; button2Text?: string; button2To?: string; desc: string; gradientTitle?: string; heroImage?: string; subLinkIcon?: ReactElement; subLinkPath?: string; subLinkText1?: string; subLinkText2?: string; sx?: Record<string, string>; textColor?: string; title: string; title2?: string; } export declare const BasicHero: React.FC<BasicHeroProps>; //# sourceMappingURL=BasicHero.d.ts.map