@vnmfify/core
Version:
```shell npm i @vnmfify/core -S ```
14 lines (13 loc) • 434 B
TypeScript
import { ViewProps } from "@vnxjs/components/types/View";
import { ReactNode } from "react";
import { FormLabelAlign } from "./form.shared";
export interface FormLabelProps extends ViewProps {
align?: FormLabelAlign;
colon?: boolean;
children?: ReactNode;
}
declare function FormLabel(props: FormLabelProps): JSX.Element;
declare namespace FormLabel {
var displayName: string;
}
export default FormLabel;