@react-pakistan/react-ui-collection
Version:
React UI Collection built upon React Storybook
24 lines (23 loc) • 473 B
TypeScript
import { ReactText } from 'react';
export declare enum SUBSCRIPTION_BAR_STYLE {
REGULAR = "regular",
MINI = "mini"
}
export interface ISubscriptionBarProps {
/**
* Color property for H4 component
*/
colorH4?: string;
/**
* Heading for H4 component
*/
headingH4: ReactText;
/**
* Heading for H5 component
*/
headingH5?: ReactText;
/**
* Enum value for Subscription Bar type
*/
style: string;
}