habesha-datepicker
Version:
An Ethiopian date picker component designed for React applications.
12 lines (11 loc) • 367 B
TypeScript
import { TypographyProps } from "@mui/material";
import React from "react";
import { DateType } from "./util/EthiopianDateUtils";
type EtDateViewerProps = {
date: Date;
initialDateType?: DateType;
disableSwitcher?: boolean;
showTime?: boolean;
} & TypographyProps;
declare const EtDateViewer: React.FC<EtDateViewerProps>;
export default EtDateViewer;