# BaseProps

Base props for action columns configuration

## Definition

```tsx
export interface BaseProps {
    /** Enable this action column */
    enable: boolean;
    /** Label to display in column header */
    label?: string;
    /** Width of the column in pixels */
    width?: number;
}
```

## Usage

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