@elacity-js/uikit
Version:
React / Material UI Design kit for Elacity project
11 lines (10 loc) • 333 B
TypeScript
import React from 'react';
interface AppealProps {
title?: string;
subtitle?: string;
label?: string;
navigateTo?: string;
Icon?: React.ComponentType;
}
declare const _default: ({ title, subtitle, label, children, navigateTo, Icon }: React.PropsWithChildren<AppealProps>) => JSX.Element;
export default _default;