UNPKG

@massds/mayflower-react

Version:

React versions of Mayflower design system UI components

30 lines (29 loc) 724 B
import React from 'react'; export interface PanelItemProps { narrow?: boolean; title?: string; CustomIcon?: React.ElementType; description?: string; ariaLabel?: string; links?: object[]; } export interface LoginItemProps { data?: { panel?: { description?: string; links?: object[]; }; text?: string; ariaLabel?: string; }; } export declare const LoginItem: ({ data }: LoginItemProps) => any; export declare const TranslateItem: () => any; export interface StateItemProps { data?: { link?: string; text?: string; ariaLabel?: string; }; } export declare const StateItem: ({ data }: StateItemProps) => any;