fix(Field): title -> label

This commit is contained in:
AAGaming
2022-06-22 21:52:15 -04:00
parent 7b04bf5827
commit da4c79b5ae

View File

@@ -2,7 +2,7 @@ import { FC, HTMLAttributes, ReactNode, RefAttributes } from 'react';
import { findModuleChild } from '../webpack';
export interface FieldProps extends HTMLAttributes<HTMLDivElement> {
title?: string;
label?: string;
description?: boolean;
disabled?: boolean;
icon?: ReactNode;