umi-tablayout
This commit is contained in:
11
src/assets/close.tsx
Normal file
11
src/assets/close.tsx
Normal file
@ -0,0 +1,11 @@
|
||||
import React from 'react';
|
||||
import Icon from '@ant-design/icons';
|
||||
import type { CustomIconComponentProps } from '@ant-design/icons/lib/components/Icon';
|
||||
|
||||
const CloseSvg = () => (<svg fill="currentColor" width="1em" height="1em" viewBox="0 0 6.248898506164551 6.243957042694092"><g><path d="M3.56601,3.11145L6.15664,0.534258C6.27913,0.412382,6.27975,0.214879,6.15788,0.0923818C6.03568,-0.0304343,5.8385,-0.0307366,5.716,0.0911388L3.12475,2.66863L0.556011,0.092063C0.434454,-0.0298125,0.236631,-0.030434,0.114135,0.0914414C-0.00806004,0.213317,-0.00836238,0.411123,0.113513,0.533637L2.68163,3.10957L0.0922625,5.6852C-0.0302345,5.80707,-0.030856,6.00457,0.0910194,6.12707C0.151949,6.18832,0.232264,6.21926,0.312579,6.21926C0.392273,6.21926,0.471949,6.18896,0.532896,6.12833L3.1229,3.55208L5.7151,6.15208C5.77602,6.21333,5.85604,6.24396,5.93635,6.24396C6.01635,6.24396,6.09604,6.21333,6.15697,6.15271C6.27917,6.03083,6.27947,5.83333,6.15759,5.71083L3.56601,3.11145Z" /></g></svg>)
|
||||
|
||||
const CloseIcon = (props: Partial<CustomIconComponentProps>) => (
|
||||
<Icon component={CloseSvg} {...props} />
|
||||
);
|
||||
|
||||
export default CloseIcon;
|
1
src/assets/collapse.svg
Normal file
1
src/assets/collapse.svg
Normal file
@ -0,0 +1 @@
|
||||
<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" fill="none" version="1.1" width="34" height="34" viewBox="0 0 34 34"><defs><clipPath id="master_svg0_94_9925"><rect x="0" y="0" width="34" height="34" rx="0"/></clipPath></defs><g clip-path="url(#master_svg0_94_9925)"><rect x="1" y="1" width="32" height="32" rx="0" fill="#FFFFFF" fill-opacity="1"/><g><path d="M24,10C24,10,8,10,8,10C8,10,8,12.66667,8,12.66667C8,12.66667,24,12.66667,24,12.66667C24,12.66667,24,10,24,10C24,10,24,10,24,10ZM24,15.33333C24,15.33333,13.33333,15.33333,13.33333,15.33333C13.33333,15.33333,13.33333,18,13.33333,18C13.33333,18,24,18,24,18C24,18,24,15.33333,24,15.33333C24,15.33333,24,15.33333,24,15.33333ZM24,20.6667C24,20.6667,8,20.6667,8,20.6667C8,20.6667,8,23.3333,8,23.3333C8,23.3333,24,23.3333,24,23.3333C24,23.3333,24,20.6667,24,20.6667C24,20.6667,24,20.6667,24,20.6667ZM12,14C12,14,8,16.66667,8,16.66667C8,16.66667,12,19.33333,12,19.33333C12,19.33333,12,14,12,14C12,14,12,14,12,14Z" fill="#606266" fill-opacity="1"/></g><rect x="0.5" y="0.5" width="33" height="33" rx="0" fill-opacity="0" stroke-opacity="1" stroke="#EEEEEE" fill="none" stroke-width="1"/></g></svg>
|
After Width: | Height: | Size: 1.2 KiB |
11
src/assets/dashboard.tsx
Normal file
11
src/assets/dashboard.tsx
Normal file
@ -0,0 +1,11 @@
|
||||
import React from 'react';
|
||||
import Icon from '@ant-design/icons';
|
||||
import type { CustomIconComponentProps } from '@ant-design/icons/lib/components/Icon';
|
||||
|
||||
const DashboardSvg = () => (<svg fill="currentColor" width="1em" height="1em" viewBox="0 0 16 14.678497314453125"><g><path d="M15.8678,5.47452L8.37796,0.115822C8.16176,-0.0386073,7.86835,-0.0386073,7.66759,0.115822L0.131443,5.47452C-0.115643,5.64439,0.00789999,6.03046,0.316758,6.03046L1.83017,6.03046L1.83017,14.3696C1.83017,14.5395,1.96915,14.6785,2.13902,14.6785L5.84533,14.6785C6.0152,14.6785,6.15418,14.5395,6.15418,14.3696L6.15418,9.73676L9.86049,9.73676L9.86049,14.3696C9.86049,14.5395,9.99947,14.6785,10.1693,14.6785L13.8756,14.6785C14.0455,14.6785,14.1845,14.5395,14.1845,14.3696L14.1845,6.03046L15.6979,6.03046C15.9913,6.03046,16.1149,5.64439,15.8678,5.47452Z" /></g></svg>)
|
||||
|
||||
const DashboardIcon = (props: Partial<CustomIconComponentProps>) => (
|
||||
<Icon component={DashboardSvg} {...props} />
|
||||
);
|
||||
|
||||
export default DashboardIcon;
|
1
src/assets/home-tab.svg
Normal file
1
src/assets/home-tab.svg
Normal file
File diff suppressed because one or more lines are too long
After Width: | Height: | Size: 9.7 KiB |
@ -1,5 +1,3 @@
|
||||
@import '~antd/es/style/themes/default.less';
|
||||
|
||||
.bidContent{
|
||||
padding: 0 24px;
|
||||
background: #fff;
|
||||
|
@ -1,6 +1,3 @@
|
||||
@import '~antd/es/style/themes/default.less';
|
||||
|
||||
|
||||
.form-style .ant-select-selection-placeholder{
|
||||
color: #333;
|
||||
}
|
@ -1,5 +1,3 @@
|
||||
@import '~antd/es/style/themes/default.less';
|
||||
|
||||
.bgCWhite{
|
||||
background-color: white;
|
||||
}
|
||||
|
Reference in New Issue
Block a user