2024-03-22 04:33:58 +00:00
|
|
|
import * as React from 'react';
|
|
|
|
|
import Box from '@mui/material/Box';
|
|
|
|
|
import { styled, } from '@mui/material/styles';
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
const ItemHeader = styled('div')(({ theme }) => ({
|
2024-03-25 02:23:35 +00:00
|
|
|
padding: '0px',
|
2024-03-22 04:33:58 +00:00
|
|
|
borderRadius: '4px',
|
|
|
|
|
textAlign: 'left',
|
2024-03-25 02:23:35 +00:00
|
|
|
lineHeight: '40px',
|
2024-03-22 04:33:58 +00:00
|
|
|
}));
|
|
|
|
|
|
|
|
|
|
export default function ReferenceCodePopupDialogCotentsHeader() {
|
|
|
|
|
|
|
|
|
|
return (
|
|
|
|
|
<Box
|
|
|
|
|
sx={{
|
2024-03-25 02:23:35 +00:00
|
|
|
fontSize: ' 16px',
|
2024-03-22 04:33:58 +00:00
|
|
|
display: 'grid',
|
|
|
|
|
gridAutoFlow: 'row',
|
2024-06-11 04:12:03 +00:00
|
|
|
gridTemplateColumns: 'auto 175px 60px',
|
2024-03-22 04:33:58 +00:00
|
|
|
gap: 1,
|
2024-03-25 02:23:35 +00:00
|
|
|
|
2024-03-22 04:33:58 +00:00
|
|
|
}}
|
|
|
|
|
>
|
|
|
|
|
<ItemHeader>문서번호</ItemHeader>
|
|
|
|
|
<ItemHeader>코드명</ItemHeader>
|
|
|
|
|
<ItemHeader sx={{textAlign: 'center'}}>선택</ItemHeader>
|
|
|
|
|
</Box>
|
|
|
|
|
);
|
|
|
|
|
}
|