@theaimegroup/aime-component-library
Version:
AIME Component Library
33 lines (32 loc) • 972 B
TypeScript
interface inputProps {
title: string;
OnChange: any;
value?: any;
}
interface inputProps {
title: string;
OnChange: any;
value?: any;
}
interface selectProps {
title: string;
OnChange: any;
children?: any;
}
interface pieChartProps {
title: string;
data: any;
}
interface activityCardProps {
activity: string;
activityDetails: string;
OnClick: any;
activityImage: string;
}
export declare const CustomInputDate: (props: inputProps) => JSX.Element;
export declare const CustomTextBox: (props: inputProps) => JSX.Element;
export declare const CustomInput: (props: inputProps) => JSX.Element;
export declare const CustomSelect: (props: selectProps) => JSX.Element;
export declare const CustomPieChart: (props: pieChartProps) => JSX.Element;
export declare const BabuActivityCard: ({ activity, activityDetails, OnClick, activityImage, }: activityCardProps) => JSX.Element;
export {};