@itwin/itwinui-layouts-react
Version:
iTwinUI package that provides React components for most common layouts
19 lines (18 loc) • 439 B
TypeScript
import React from 'react';
import { StylingProps } from '../../utils/props';
export declare type ContentProps = {
/**
* Children of the element
*/
children: React.ReactNode;
/**
* Adds padding and max-width to content
* @default false
*/
padded?: boolean;
} & StylingProps;
export declare const Content: {
(props: ContentProps): JSX.Element;
displayName: string;
};
export default Content;