UNPKG

@elacity-js/uikit

Version:

React / Material UI Design kit for Elacity project

11 lines (10 loc) 355 B
import React from 'react'; import type { SxProps } from '@mui/system'; interface InlineInformationProps<T = unknown> { label: string; value?: T; sx?: SxProps; gutter?: number; } declare const _default: <T>({ label, value, sx, children, gutter }: React.PropsWithChildren<InlineInformationProps<T>>) => JSX.Element; export default _default;