UNPKG

apphouse

Version:

Component library for React that uses observable state management and theme-able components.

19 lines (18 loc) 666 B
import React from 'react'; import { CSSProperties } from 'glamor'; import { PlanSelectionCardProps } from './PlanSelectionCard'; import { ApphouseComponent } from '../components/component.interfaces'; import { BoxSizeStyles } from '../styles/defaults/themes.interface'; export interface PlanSelectionPageStyles { container?: CSSProperties; } export interface PlanSelectionPageProps extends ApphouseComponent<PlanSelectionPageStyles> { cards: PlanSelectionCardProps[]; /** * The size of the card. * @optional * @default 'm' */ size?: keyof BoxSizeStyles; } export declare const PlanSelectionPage: React.FC<PlanSelectionPageProps>;