iran-license-plate
Version:
A general react component for Iran license plate.
11 lines (8 loc) • 363 B
TypeScript
import { HTMLAttributes } from 'react';
interface LicenseNumberProp extends HTMLAttributes<HTMLDivElement> {
serial?: string;
isLoading?: boolean;
isUnknown?: boolean;
}
declare const IranLicensePlate: ({ serial, className, style, isLoading, isUnknown, }: LicenseNumberProp) => JSX.Element;
export { IranLicensePlate, IranLicensePlate as default };