@mantine/core
Version:
React components library focused on usability, accessibility and developer experience
19 lines (18 loc) • 716 B
TypeScript
import { BoxProps, CompoundStylesApiProps, ElementProps, Factory } from '../../../core';
export type DataListItemValueStylesNames = 'itemValue';
export interface DataListItemValueProps extends BoxProps, CompoundStylesApiProps<DataListItemValueFactory>, ElementProps<'dd'> {
/** Value content */
children?: React.ReactNode;
}
export type DataListItemValueFactory = Factory<{
props: DataListItemValueProps;
ref: HTMLElement;
stylesNames: DataListItemValueStylesNames;
compound: true;
}>;
export declare const DataListItemValue: import("../../..").MantineComponent<{
props: DataListItemValueProps;
ref: HTMLElement;
stylesNames: DataListItemValueStylesNames;
compound: true;
}>;