UNPKG

@react-pakistan/react-ui-collection

Version:

React UI Collection built upon React Storybook

24 lines (23 loc) 517 B
import { ReactText } from 'react'; export declare enum SUBSCRIPTION_OFFER_STYLE { NORMAL = "normal", REVERSED = "reversed" } export interface ISubscriptionOfferProps { /** * Heading text for H4 component */ headingH4: ReactText; /** * Body tect for H5 component */ bodyH5: ReactText; /** * Button text for Button Text component */ buttonText: ReactText; /** * Enum value for Subscription Offer type */ style: SUBSCRIPTION_OFFER_STYLE; }