@massds/mayflower-react
Version:
React versions of Mayflower design system UI components
38 lines (37 loc) • 896 B
TypeScript
import React from 'react';
export interface PanelItemProps {
narrow?: boolean;
title?: string;
CustomIcon?: React.ElementType;
description?: string;
ariaLabel?: string;
links?: {
text?: string;
href?: string;
type?: string;
}[];
}
export interface LoginItemProps {
data?: {
panel?: {
description?: string;
links?: {
href?: string;
text?: string;
type?: string;
}[];
};
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;