# ILabelProps

## Definition

```tsx
interface ILabelProps {
    labelFor?: string,
    className?: string,
    inline?: boolean,
    styles?: React.CSSProperties,
    spacingMode?: SpacingMode,
    icon?: string;
    children?: React.ReactNode
}
```

## Usage

```tsx
import { ILabelProps } from 'uxp/components';
```

## Related Types

* [SpacingMode](https://help.iviva.com/uxp/v5/additional-resources/types/spacingmode)
