anvil/striker-ui/components/Panels/InnerPanelBody.tsx
2022-11-28 14:37:19 -05:00

19 lines
376 B
TypeScript

import { Box, BoxProps } from '@mui/material';
import { FC } from 'react';
const InnerPanelBody: FC<BoxProps> = ({ sx, ...innerPanelBodyRestProps }) => (
<Box
{...{
...innerPanelBodyRestProps,
sx: {
paddingLeft: '.7em',
paddingRight: '.7em',
paddingTop: '.3em',
...sx,
},
}}
/>
);
export default InnerPanelBody;