@lunit/oui 1.0.0-alpha.9 → 1.0.1-alpha.1
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/components/Alert/Alert.js +1 -1
- package/dist/components/Alert/Alert.utils.js +1 -1
- package/dist/components/Chip/Chip.js +1 -1
- package/dist/components/Chip/Chip.utils.js +1 -1
- package/dist/components/DatePicker/DatePicker.js +1 -1
- package/dist/components/Dialog/Dialog.js +1 -1
- package/dist/components/Dropdown/Dropdown.js +1 -1
- package/dist/components/Dropdown/DropdownItem.js +1 -1
- package/dist/components/Dropdown/IconDropdown.js +1 -1
- package/dist/components/List/List.js +1 -1
- package/dist/components/List/ListItem.styled.js +1 -1
- package/dist/components/Pagination/Pagination.js +65 -0
- package/dist/components/Pagination/Pagination.styled.js +64 -0
- package/dist/components/Pagination/Pagination.types.js +2 -0
- package/dist/components/Pagination/index.js +2 -0
- package/dist/components/ProductLabel/ProductLabel.js +1 -1
- package/dist/components/TextField/components/Buttons.js +1 -1
- package/dist/components/UploadManager/UploadManager.js +1 -1
- package/dist/components/index.js +1 -1
- package/dist/foundations/index.js +1 -0
- package/dist/foundations/palette.js +4 -0
- package/dist/foundations/styles.js +7 -0
- package/dist/icons/BellNoti/index.js +14 -0
- package/dist/icons/CloseLarge/index.js +14 -0
- package/dist/icons/CloseSmall/index.js +14 -0
- package/dist/{components/Icons → icons}/DownloadPdf/index.js +4 -4
- package/dist/icons/Ellipse/index.js +14 -0
- package/dist/icons/FilterNoti/index.js +14 -0
- package/dist/icons/HideLarge/index.js +14 -0
- package/dist/icons/HideSmall/index.js +14 -0
- package/dist/{components/Icons → icons}/InformationLarge/index.js +4 -4
- package/dist/{components/Icons → icons}/InformationSmall/index.js +4 -4
- package/dist/{components/Icons → icons}/Manufacturer/index.js +4 -4
- package/dist/icons/Rectangle/index.js +14 -0
- package/dist/{components/Icons → icons}/RefreshLeft/index.js +4 -4
- package/dist/{components/Icons → icons}/RefreshRight/index.js +4 -4
- package/dist/icons/ShowLarge/index.js +14 -0
- package/dist/icons/ShowSmall/index.js +14 -0
- package/dist/types/components/Pagination/Pagination.d.ts +3 -0
- package/dist/types/components/Pagination/Pagination.styled.d.ts +24 -0
- package/dist/types/components/Pagination/Pagination.types.d.ts +35 -0
- package/dist/types/components/Pagination/index.d.ts +2 -0
- package/dist/types/components/index.d.ts +1 -1
- package/dist/types/foundations/index.d.ts +1 -0
- package/dist/types/foundations/palette.d.ts +8 -1
- package/dist/types/foundations/styles.d.ts +2 -0
- package/dist/types/{components/Icons → icons}/BellNoti/index.d.ts +2 -2
- package/dist/types/{components/Icons → icons}/CloseLarge/index.d.ts +2 -2
- package/dist/types/{components/Icons → icons}/CloseSmall/index.d.ts +2 -2
- package/dist/types/{components/Icons → icons}/DownloadPdf/index.d.ts +2 -2
- package/dist/types/{components/Icons → icons}/Ellipse/index.d.ts +2 -2
- package/dist/types/{components/Icons → icons}/FilterNoti/index.d.ts +2 -2
- package/dist/types/{components/Icons → icons}/HideLarge/index.d.ts +2 -2
- package/dist/types/{components/Icons → icons}/HideSmall/index.d.ts +2 -2
- package/dist/types/{components/Icons → icons}/InformationLarge/index.d.ts +2 -2
- package/dist/types/{components/Icons → icons}/InformationSmall/index.d.ts +2 -2
- package/dist/types/{components/Icons → icons}/Manufacturer/index.d.ts +2 -2
- package/dist/types/{components/Icons → icons}/Rectangle/index.d.ts +2 -2
- package/dist/types/{components/Icons → icons}/RefreshLeft/index.d.ts +2 -2
- package/dist/types/{components/Icons → icons}/RefreshRight/index.d.ts +2 -2
- package/dist/types/{components/Icons → icons}/ShowLarge/index.d.ts +2 -2
- package/dist/types/{components/Icons → icons}/ShowSmall/index.d.ts +2 -2
- package/package.json +1 -1
- package/src/components/Alert/Alert.tsx +1 -1
- package/src/components/Alert/Alert.utils.tsx +1 -1
- package/src/components/Chip/Chip.tsx +1 -1
- package/src/components/Chip/Chip.utils.tsx +1 -1
- package/src/components/DatePicker/DatePicker.tsx +1 -1
- package/src/components/Dialog/Dialog.tsx +1 -1
- package/src/components/Dropdown/Dropdown.tsx +1 -1
- package/src/components/Dropdown/DropdownItem.tsx +1 -1
- package/src/components/Dropdown/IconDropdown.tsx +1 -1
- package/src/components/List/List.tsx +1 -1
- package/src/components/List/ListItem.styled.tsx +1 -1
- package/src/components/Pagination/Pagination.styled.tsx +71 -0
- package/src/components/Pagination/Pagination.tsx +182 -0
- package/src/components/Pagination/Pagination.types.ts +39 -0
- package/src/components/Pagination/index.ts +2 -0
- package/src/components/ProductLabel/ProductLabel.tsx +1 -1
- package/src/components/TextField/components/Buttons.tsx +1 -1
- package/src/components/UploadManager/UploadManager.tsx +1 -1
- package/src/components/index.ts +1 -1
- package/src/foundations/index.ts +1 -0
- package/src/foundations/palette.ts +12 -1
- package/src/foundations/styles.ts +9 -0
- package/src/icons/BellNoti/index.tsx +28 -0
- package/src/icons/CloseLarge/index.tsx +28 -0
- package/src/icons/CloseSmall/index.tsx +28 -0
- package/src/icons/DownloadPdf/index.tsx +28 -0
- package/src/icons/Ellipse/index.tsx +28 -0
- package/src/icons/FilterNoti/index.tsx +28 -0
- package/src/icons/HideLarge/index.tsx +28 -0
- package/src/icons/HideSmall/index.tsx +28 -0
- package/src/icons/InformationLarge/index.tsx +28 -0
- package/src/icons/InformationSmall/index.tsx +28 -0
- package/src/icons/Manufacturer/index.tsx +28 -0
- package/src/icons/Rectangle/index.tsx +28 -0
- package/src/icons/RefreshLeft/index.tsx +28 -0
- package/src/icons/RefreshRight/index.tsx +28 -0
- package/src/icons/ShowLarge/index.tsx +28 -0
- package/src/icons/ShowSmall/index.tsx +28 -0
- package/dist/components/Icons/BellNoti/index.js +0 -14
- package/dist/components/Icons/CloseLarge/index.js +0 -14
- package/dist/components/Icons/CloseSmall/index.js +0 -14
- package/dist/components/Icons/Ellipse/index.js +0 -14
- package/dist/components/Icons/FilterNoti/index.js +0 -14
- package/dist/components/Icons/HideLarge/index.js +0 -14
- package/dist/components/Icons/HideSmall/index.js +0 -14
- package/dist/components/Icons/Rectangle/index.js +0 -14
- package/dist/components/Icons/ShowLarge/index.js +0 -14
- package/dist/components/Icons/ShowSmall/index.js +0 -14
- package/src/components/Icons/BellNoti/index.tsx +0 -22
- package/src/components/Icons/CloseLarge/index.tsx +0 -22
- package/src/components/Icons/CloseSmall/index.tsx +0 -22
- package/src/components/Icons/DownloadPdf/index.tsx +0 -22
- package/src/components/Icons/Ellipse/index.tsx +0 -22
- package/src/components/Icons/FilterNoti/index.tsx +0 -22
- package/src/components/Icons/HideLarge/index.tsx +0 -22
- package/src/components/Icons/HideSmall/index.tsx +0 -22
- package/src/components/Icons/InformationLarge/index.tsx +0 -22
- package/src/components/Icons/InformationSmall/index.tsx +0 -22
- package/src/components/Icons/Manufacturer/index.tsx +0 -22
- package/src/components/Icons/Rectangle/index.tsx +0 -22
- package/src/components/Icons/RefreshLeft/index.tsx +0 -22
- package/src/components/Icons/RefreshRight/index.tsx +0 -22
- package/src/components/Icons/ShowLarge/index.tsx +0 -22
- package/src/components/Icons/ShowSmall/index.tsx +0 -22
- /package/dist/{components/Icons → icons}/index.js +0 -0
- /package/dist/types/{components/Icons → icons}/index.d.ts +0 -0
- /package/src/{components/Icons → icons}/index.ts +0 -0
package/src/foundations/index.ts
CHANGED
|
@@ -164,7 +164,14 @@ type AnalysisStatusKey =
|
|
|
164
164
|
export type AnalysisStatus = PaletteOptionItem<AnalysisStatusKey>;
|
|
165
165
|
|
|
166
166
|
export interface LunitPalette {
|
|
167
|
-
brand:
|
|
167
|
+
brand: {
|
|
168
|
+
primary: React.CSSProperties['color'];
|
|
169
|
+
secondary: React.CSSProperties['color'];
|
|
170
|
+
};
|
|
171
|
+
scope1: React.CSSProperties['color'];
|
|
172
|
+
scope2: React.CSSProperties['color'];
|
|
173
|
+
scope3: React.CSSProperties['color'];
|
|
174
|
+
scope4: React.CSSProperties['color'];
|
|
168
175
|
lunitTeal: LunitTeal;
|
|
169
176
|
neutralGrey: NeutralColor;
|
|
170
177
|
yellow: Yellow;
|
|
@@ -398,6 +405,10 @@ const palette: PaletteOptions = {
|
|
|
398
405
|
InvalidHover: '#A7A7A7',
|
|
399
406
|
InvalidSelected: '#6E6E74',
|
|
400
407
|
},
|
|
408
|
+
scope1: '#7292FD',
|
|
409
|
+
scope2: '#587EFC',
|
|
410
|
+
scope3: '#B0C0F4',
|
|
411
|
+
scope4: '#3A5DD9',
|
|
401
412
|
info: { main: '#748FFC' },
|
|
402
413
|
success: { main: '#00C9EA' },
|
|
403
414
|
error: { main: '#FA4D56' },
|
|
@@ -0,0 +1,9 @@
|
|
|
1
|
+
import { SMALL_SCROLLBAR_WIDTH } from '../systems';
|
|
2
|
+
|
|
3
|
+
export function subScrollbarWidth(value: string): string;
|
|
4
|
+
export function subScrollbarWidth(value: number): number;
|
|
5
|
+
export function subScrollbarWidth(value: string | number): string | number {
|
|
6
|
+
return typeof value === 'number'
|
|
7
|
+
? value - SMALL_SCROLLBAR_WIDTH
|
|
8
|
+
: `calc(${value} - ${SMALL_SCROLLBAR_WIDTH}px)`;
|
|
9
|
+
}
|
|
@@ -0,0 +1,28 @@
|
|
|
1
|
+
import React from 'react';
|
|
2
|
+
import SvgIcon, { SvgIconProps } from '@mui/material/SvgIcon';
|
|
3
|
+
|
|
4
|
+
import { IcBellNotiOutlined20Px as outlined } from '../../assets';
|
|
5
|
+
|
|
6
|
+
const variants = ['outlined'] as const;
|
|
7
|
+
type Variant = (typeof variants)[number];
|
|
8
|
+
type IconProps = SvgIconProps & {
|
|
9
|
+
variant?: Variant;
|
|
10
|
+
};
|
|
11
|
+
const BellNoti = ({ variant = 'outlined', ...rest }: IconProps) => {
|
|
12
|
+
if (variant === 'outlined') {
|
|
13
|
+
return (
|
|
14
|
+
<SvgIcon
|
|
15
|
+
{...rest}
|
|
16
|
+
component={outlined}
|
|
17
|
+
inheritViewBox
|
|
18
|
+
/>
|
|
19
|
+
);
|
|
20
|
+
}
|
|
21
|
+
|
|
22
|
+
return null;
|
|
23
|
+
};
|
|
24
|
+
|
|
25
|
+
BellNoti.displayName = 'BellNoti';
|
|
26
|
+
BellNoti.variants = variants;
|
|
27
|
+
|
|
28
|
+
export default BellNoti;
|
|
@@ -0,0 +1,28 @@
|
|
|
1
|
+
import React from 'react';
|
|
2
|
+
import SvgIcon, { SvgIconProps } from '@mui/material/SvgIcon';
|
|
3
|
+
|
|
4
|
+
import { IcCloseLargeOutlined20Px as outlined } from '../../assets';
|
|
5
|
+
|
|
6
|
+
const variants = ['outlined'] as const;
|
|
7
|
+
type Variant = (typeof variants)[number];
|
|
8
|
+
type IconProps = SvgIconProps & {
|
|
9
|
+
variant?: Variant;
|
|
10
|
+
};
|
|
11
|
+
const CloseLarge = ({ variant = 'outlined', ...rest }: IconProps) => {
|
|
12
|
+
if (variant === 'outlined') {
|
|
13
|
+
return (
|
|
14
|
+
<SvgIcon
|
|
15
|
+
{...rest}
|
|
16
|
+
component={outlined}
|
|
17
|
+
inheritViewBox
|
|
18
|
+
/>
|
|
19
|
+
);
|
|
20
|
+
}
|
|
21
|
+
|
|
22
|
+
return null;
|
|
23
|
+
};
|
|
24
|
+
|
|
25
|
+
CloseLarge.displayName = 'CloseLarge';
|
|
26
|
+
CloseLarge.variants = variants;
|
|
27
|
+
|
|
28
|
+
export default CloseLarge;
|
|
@@ -0,0 +1,28 @@
|
|
|
1
|
+
import React from 'react';
|
|
2
|
+
import SvgIcon, { SvgIconProps } from '@mui/material/SvgIcon';
|
|
3
|
+
|
|
4
|
+
import { IcCloseSmallOutlined20Px as outlined } from '../../assets';
|
|
5
|
+
|
|
6
|
+
const variants = ['outlined'] as const;
|
|
7
|
+
type Variant = (typeof variants)[number];
|
|
8
|
+
type IconProps = SvgIconProps & {
|
|
9
|
+
variant?: Variant;
|
|
10
|
+
};
|
|
11
|
+
const CloseSmall = ({ variant = 'outlined', ...rest }: IconProps) => {
|
|
12
|
+
if (variant === 'outlined') {
|
|
13
|
+
return (
|
|
14
|
+
<SvgIcon
|
|
15
|
+
{...rest}
|
|
16
|
+
component={outlined}
|
|
17
|
+
inheritViewBox
|
|
18
|
+
/>
|
|
19
|
+
);
|
|
20
|
+
}
|
|
21
|
+
|
|
22
|
+
return null;
|
|
23
|
+
};
|
|
24
|
+
|
|
25
|
+
CloseSmall.displayName = 'CloseSmall';
|
|
26
|
+
CloseSmall.variants = variants;
|
|
27
|
+
|
|
28
|
+
export default CloseSmall;
|
|
@@ -0,0 +1,28 @@
|
|
|
1
|
+
import React from 'react';
|
|
2
|
+
import SvgIcon, { SvgIconProps } from '@mui/material/SvgIcon';
|
|
3
|
+
|
|
4
|
+
import { IcDownloadPdfOutlined20Px as outlined } from '../../assets';
|
|
5
|
+
|
|
6
|
+
const variants = ['outlined'] as const;
|
|
7
|
+
type Variant = (typeof variants)[number];
|
|
8
|
+
type IconProps = SvgIconProps & {
|
|
9
|
+
variant?: Variant;
|
|
10
|
+
};
|
|
11
|
+
const DownloadPdf = ({ variant = 'outlined', ...rest }: IconProps) => {
|
|
12
|
+
if (variant === 'outlined') {
|
|
13
|
+
return (
|
|
14
|
+
<SvgIcon
|
|
15
|
+
{...rest}
|
|
16
|
+
component={outlined}
|
|
17
|
+
inheritViewBox
|
|
18
|
+
/>
|
|
19
|
+
);
|
|
20
|
+
}
|
|
21
|
+
|
|
22
|
+
return null;
|
|
23
|
+
};
|
|
24
|
+
|
|
25
|
+
DownloadPdf.displayName = 'DownloadPdf';
|
|
26
|
+
DownloadPdf.variants = variants;
|
|
27
|
+
|
|
28
|
+
export default DownloadPdf;
|
|
@@ -0,0 +1,28 @@
|
|
|
1
|
+
import React from 'react';
|
|
2
|
+
import SvgIcon, { SvgIconProps } from '@mui/material/SvgIcon';
|
|
3
|
+
|
|
4
|
+
import { IcEllipseOutlined20Px as outlined } from '../../assets';
|
|
5
|
+
|
|
6
|
+
const variants = ['outlined'] as const;
|
|
7
|
+
type Variant = (typeof variants)[number];
|
|
8
|
+
type IconProps = SvgIconProps & {
|
|
9
|
+
variant?: Variant;
|
|
10
|
+
};
|
|
11
|
+
const Ellipse = ({ variant = 'outlined', ...rest }: IconProps) => {
|
|
12
|
+
if (variant === 'outlined') {
|
|
13
|
+
return (
|
|
14
|
+
<SvgIcon
|
|
15
|
+
{...rest}
|
|
16
|
+
component={outlined}
|
|
17
|
+
inheritViewBox
|
|
18
|
+
/>
|
|
19
|
+
);
|
|
20
|
+
}
|
|
21
|
+
|
|
22
|
+
return null;
|
|
23
|
+
};
|
|
24
|
+
|
|
25
|
+
Ellipse.displayName = 'Ellipse';
|
|
26
|
+
Ellipse.variants = variants;
|
|
27
|
+
|
|
28
|
+
export default Ellipse;
|
|
@@ -0,0 +1,28 @@
|
|
|
1
|
+
import React from 'react';
|
|
2
|
+
import SvgIcon, { SvgIconProps } from '@mui/material/SvgIcon';
|
|
3
|
+
|
|
4
|
+
import { IcFilterNotiOutlined20Px as outlined } from '../../assets';
|
|
5
|
+
|
|
6
|
+
const variants = ['outlined'] as const;
|
|
7
|
+
type Variant = (typeof variants)[number];
|
|
8
|
+
type IconProps = SvgIconProps & {
|
|
9
|
+
variant?: Variant;
|
|
10
|
+
};
|
|
11
|
+
const FilterNoti = ({ variant = 'outlined', ...rest }: IconProps) => {
|
|
12
|
+
if (variant === 'outlined') {
|
|
13
|
+
return (
|
|
14
|
+
<SvgIcon
|
|
15
|
+
{...rest}
|
|
16
|
+
component={outlined}
|
|
17
|
+
inheritViewBox
|
|
18
|
+
/>
|
|
19
|
+
);
|
|
20
|
+
}
|
|
21
|
+
|
|
22
|
+
return null;
|
|
23
|
+
};
|
|
24
|
+
|
|
25
|
+
FilterNoti.displayName = 'FilterNoti';
|
|
26
|
+
FilterNoti.variants = variants;
|
|
27
|
+
|
|
28
|
+
export default FilterNoti;
|
|
@@ -0,0 +1,28 @@
|
|
|
1
|
+
import React from 'react';
|
|
2
|
+
import SvgIcon, { SvgIconProps } from '@mui/material/SvgIcon';
|
|
3
|
+
|
|
4
|
+
import { IcHideLargeOutlined20Px as outlined } from '../../assets';
|
|
5
|
+
|
|
6
|
+
const variants = ['outlined'] as const;
|
|
7
|
+
type Variant = (typeof variants)[number];
|
|
8
|
+
type IconProps = SvgIconProps & {
|
|
9
|
+
variant?: Variant;
|
|
10
|
+
};
|
|
11
|
+
const HideLarge = ({ variant = 'outlined', ...rest }: IconProps) => {
|
|
12
|
+
if (variant === 'outlined') {
|
|
13
|
+
return (
|
|
14
|
+
<SvgIcon
|
|
15
|
+
{...rest}
|
|
16
|
+
component={outlined}
|
|
17
|
+
inheritViewBox
|
|
18
|
+
/>
|
|
19
|
+
);
|
|
20
|
+
}
|
|
21
|
+
|
|
22
|
+
return null;
|
|
23
|
+
};
|
|
24
|
+
|
|
25
|
+
HideLarge.displayName = 'HideLarge';
|
|
26
|
+
HideLarge.variants = variants;
|
|
27
|
+
|
|
28
|
+
export default HideLarge;
|
|
@@ -0,0 +1,28 @@
|
|
|
1
|
+
import React from 'react';
|
|
2
|
+
import SvgIcon, { SvgIconProps } from '@mui/material/SvgIcon';
|
|
3
|
+
|
|
4
|
+
import { IcHideSmallOutlined20Px as outlined } from '../../assets';
|
|
5
|
+
|
|
6
|
+
const variants = ['outlined'] as const;
|
|
7
|
+
type Variant = (typeof variants)[number];
|
|
8
|
+
type IconProps = SvgIconProps & {
|
|
9
|
+
variant?: Variant;
|
|
10
|
+
};
|
|
11
|
+
const HideSmall = ({ variant = 'outlined', ...rest }: IconProps) => {
|
|
12
|
+
if (variant === 'outlined') {
|
|
13
|
+
return (
|
|
14
|
+
<SvgIcon
|
|
15
|
+
{...rest}
|
|
16
|
+
component={outlined}
|
|
17
|
+
inheritViewBox
|
|
18
|
+
/>
|
|
19
|
+
);
|
|
20
|
+
}
|
|
21
|
+
|
|
22
|
+
return null;
|
|
23
|
+
};
|
|
24
|
+
|
|
25
|
+
HideSmall.displayName = 'HideSmall';
|
|
26
|
+
HideSmall.variants = variants;
|
|
27
|
+
|
|
28
|
+
export default HideSmall;
|
|
@@ -0,0 +1,28 @@
|
|
|
1
|
+
import React from 'react';
|
|
2
|
+
import SvgIcon, { SvgIconProps } from '@mui/material/SvgIcon';
|
|
3
|
+
|
|
4
|
+
import { IcInformationLargeOutlined20Px as outlined } from '../../assets';
|
|
5
|
+
|
|
6
|
+
const variants = ['outlined'] as const;
|
|
7
|
+
type Variant = (typeof variants)[number];
|
|
8
|
+
type IconProps = SvgIconProps & {
|
|
9
|
+
variant?: Variant;
|
|
10
|
+
};
|
|
11
|
+
const InformationLarge = ({ variant = 'outlined', ...rest }: IconProps) => {
|
|
12
|
+
if (variant === 'outlined') {
|
|
13
|
+
return (
|
|
14
|
+
<SvgIcon
|
|
15
|
+
{...rest}
|
|
16
|
+
component={outlined}
|
|
17
|
+
inheritViewBox
|
|
18
|
+
/>
|
|
19
|
+
);
|
|
20
|
+
}
|
|
21
|
+
|
|
22
|
+
return null;
|
|
23
|
+
};
|
|
24
|
+
|
|
25
|
+
InformationLarge.displayName = 'InformationLarge';
|
|
26
|
+
InformationLarge.variants = variants;
|
|
27
|
+
|
|
28
|
+
export default InformationLarge;
|
|
@@ -0,0 +1,28 @@
|
|
|
1
|
+
import React from 'react';
|
|
2
|
+
import SvgIcon, { SvgIconProps } from '@mui/material/SvgIcon';
|
|
3
|
+
|
|
4
|
+
import { IcInformationSmallOutlined20Px as outlined } from '../../assets';
|
|
5
|
+
|
|
6
|
+
const variants = ['outlined'] as const;
|
|
7
|
+
type Variant = (typeof variants)[number];
|
|
8
|
+
type IconProps = SvgIconProps & {
|
|
9
|
+
variant?: Variant;
|
|
10
|
+
};
|
|
11
|
+
const InformationSmall = ({ variant = 'outlined', ...rest }: IconProps) => {
|
|
12
|
+
if (variant === 'outlined') {
|
|
13
|
+
return (
|
|
14
|
+
<SvgIcon
|
|
15
|
+
{...rest}
|
|
16
|
+
component={outlined}
|
|
17
|
+
inheritViewBox
|
|
18
|
+
/>
|
|
19
|
+
);
|
|
20
|
+
}
|
|
21
|
+
|
|
22
|
+
return null;
|
|
23
|
+
};
|
|
24
|
+
|
|
25
|
+
InformationSmall.displayName = 'InformationSmall';
|
|
26
|
+
InformationSmall.variants = variants;
|
|
27
|
+
|
|
28
|
+
export default InformationSmall;
|
|
@@ -0,0 +1,28 @@
|
|
|
1
|
+
import React from 'react';
|
|
2
|
+
import SvgIcon, { SvgIconProps } from '@mui/material/SvgIcon';
|
|
3
|
+
|
|
4
|
+
import { IcManufacturerOutlined20Px as outlined } from '../../assets';
|
|
5
|
+
|
|
6
|
+
const variants = ['outlined'] as const;
|
|
7
|
+
type Variant = (typeof variants)[number];
|
|
8
|
+
type IconProps = SvgIconProps & {
|
|
9
|
+
variant?: Variant;
|
|
10
|
+
};
|
|
11
|
+
const Manufacturer = ({ variant = 'outlined', ...rest }: IconProps) => {
|
|
12
|
+
if (variant === 'outlined') {
|
|
13
|
+
return (
|
|
14
|
+
<SvgIcon
|
|
15
|
+
{...rest}
|
|
16
|
+
component={outlined}
|
|
17
|
+
inheritViewBox
|
|
18
|
+
/>
|
|
19
|
+
);
|
|
20
|
+
}
|
|
21
|
+
|
|
22
|
+
return null;
|
|
23
|
+
};
|
|
24
|
+
|
|
25
|
+
Manufacturer.displayName = 'Manufacturer';
|
|
26
|
+
Manufacturer.variants = variants;
|
|
27
|
+
|
|
28
|
+
export default Manufacturer;
|
|
@@ -0,0 +1,28 @@
|
|
|
1
|
+
import React from 'react';
|
|
2
|
+
import SvgIcon, { SvgIconProps } from '@mui/material/SvgIcon';
|
|
3
|
+
|
|
4
|
+
import { IcRectangleOutlined20Px as outlined } from '../../assets';
|
|
5
|
+
|
|
6
|
+
const variants = ['outlined'] as const;
|
|
7
|
+
type Variant = (typeof variants)[number];
|
|
8
|
+
type IconProps = SvgIconProps & {
|
|
9
|
+
variant?: Variant;
|
|
10
|
+
};
|
|
11
|
+
const Rectangle = ({ variant = 'outlined', ...rest }: IconProps) => {
|
|
12
|
+
if (variant === 'outlined') {
|
|
13
|
+
return (
|
|
14
|
+
<SvgIcon
|
|
15
|
+
{...rest}
|
|
16
|
+
component={outlined}
|
|
17
|
+
inheritViewBox
|
|
18
|
+
/>
|
|
19
|
+
);
|
|
20
|
+
}
|
|
21
|
+
|
|
22
|
+
return null;
|
|
23
|
+
};
|
|
24
|
+
|
|
25
|
+
Rectangle.displayName = 'Rectangle';
|
|
26
|
+
Rectangle.variants = variants;
|
|
27
|
+
|
|
28
|
+
export default Rectangle;
|
|
@@ -0,0 +1,28 @@
|
|
|
1
|
+
import React from 'react';
|
|
2
|
+
import SvgIcon, { SvgIconProps } from '@mui/material/SvgIcon';
|
|
3
|
+
|
|
4
|
+
import { IcRefreshLeftOutlined20Px as outlined } from '../../assets';
|
|
5
|
+
|
|
6
|
+
const variants = ['outlined'] as const;
|
|
7
|
+
type Variant = (typeof variants)[number];
|
|
8
|
+
type IconProps = SvgIconProps & {
|
|
9
|
+
variant?: Variant;
|
|
10
|
+
};
|
|
11
|
+
const RefreshLeft = ({ variant = 'outlined', ...rest }: IconProps) => {
|
|
12
|
+
if (variant === 'outlined') {
|
|
13
|
+
return (
|
|
14
|
+
<SvgIcon
|
|
15
|
+
{...rest}
|
|
16
|
+
component={outlined}
|
|
17
|
+
inheritViewBox
|
|
18
|
+
/>
|
|
19
|
+
);
|
|
20
|
+
}
|
|
21
|
+
|
|
22
|
+
return null;
|
|
23
|
+
};
|
|
24
|
+
|
|
25
|
+
RefreshLeft.displayName = 'RefreshLeft';
|
|
26
|
+
RefreshLeft.variants = variants;
|
|
27
|
+
|
|
28
|
+
export default RefreshLeft;
|
|
@@ -0,0 +1,28 @@
|
|
|
1
|
+
import React from 'react';
|
|
2
|
+
import SvgIcon, { SvgIconProps } from '@mui/material/SvgIcon';
|
|
3
|
+
|
|
4
|
+
import { IcRefreshRightOutlined20Px as outlined } from '../../assets';
|
|
5
|
+
|
|
6
|
+
const variants = ['outlined'] as const;
|
|
7
|
+
type Variant = (typeof variants)[number];
|
|
8
|
+
type IconProps = SvgIconProps & {
|
|
9
|
+
variant?: Variant;
|
|
10
|
+
};
|
|
11
|
+
const RefreshRight = ({ variant = 'outlined', ...rest }: IconProps) => {
|
|
12
|
+
if (variant === 'outlined') {
|
|
13
|
+
return (
|
|
14
|
+
<SvgIcon
|
|
15
|
+
{...rest}
|
|
16
|
+
component={outlined}
|
|
17
|
+
inheritViewBox
|
|
18
|
+
/>
|
|
19
|
+
);
|
|
20
|
+
}
|
|
21
|
+
|
|
22
|
+
return null;
|
|
23
|
+
};
|
|
24
|
+
|
|
25
|
+
RefreshRight.displayName = 'RefreshRight';
|
|
26
|
+
RefreshRight.variants = variants;
|
|
27
|
+
|
|
28
|
+
export default RefreshRight;
|
|
@@ -0,0 +1,28 @@
|
|
|
1
|
+
import React from 'react';
|
|
2
|
+
import SvgIcon, { SvgIconProps } from '@mui/material/SvgIcon';
|
|
3
|
+
|
|
4
|
+
import { IcShowLargeOutlined20Px as outlined } from '../../assets';
|
|
5
|
+
|
|
6
|
+
const variants = ['outlined'] as const;
|
|
7
|
+
type Variant = (typeof variants)[number];
|
|
8
|
+
type IconProps = SvgIconProps & {
|
|
9
|
+
variant?: Variant;
|
|
10
|
+
};
|
|
11
|
+
const ShowLarge = ({ variant = 'outlined', ...rest }: IconProps) => {
|
|
12
|
+
if (variant === 'outlined') {
|
|
13
|
+
return (
|
|
14
|
+
<SvgIcon
|
|
15
|
+
{...rest}
|
|
16
|
+
component={outlined}
|
|
17
|
+
inheritViewBox
|
|
18
|
+
/>
|
|
19
|
+
);
|
|
20
|
+
}
|
|
21
|
+
|
|
22
|
+
return null;
|
|
23
|
+
};
|
|
24
|
+
|
|
25
|
+
ShowLarge.displayName = 'ShowLarge';
|
|
26
|
+
ShowLarge.variants = variants;
|
|
27
|
+
|
|
28
|
+
export default ShowLarge;
|
|
@@ -0,0 +1,28 @@
|
|
|
1
|
+
import React from 'react';
|
|
2
|
+
import SvgIcon, { SvgIconProps } from '@mui/material/SvgIcon';
|
|
3
|
+
|
|
4
|
+
import { IcShowSmallOutlined20Px as outlined } from '../../assets';
|
|
5
|
+
|
|
6
|
+
const variants = ['outlined'] as const;
|
|
7
|
+
type Variant = (typeof variants)[number];
|
|
8
|
+
type IconProps = SvgIconProps & {
|
|
9
|
+
variant?: Variant;
|
|
10
|
+
};
|
|
11
|
+
const ShowSmall = ({ variant = 'outlined', ...rest }: IconProps) => {
|
|
12
|
+
if (variant === 'outlined') {
|
|
13
|
+
return (
|
|
14
|
+
<SvgIcon
|
|
15
|
+
{...rest}
|
|
16
|
+
component={outlined}
|
|
17
|
+
inheritViewBox
|
|
18
|
+
/>
|
|
19
|
+
);
|
|
20
|
+
}
|
|
21
|
+
|
|
22
|
+
return null;
|
|
23
|
+
};
|
|
24
|
+
|
|
25
|
+
ShowSmall.displayName = 'ShowSmall';
|
|
26
|
+
ShowSmall.variants = variants;
|
|
27
|
+
|
|
28
|
+
export default ShowSmall;
|
|
@@ -1,14 +0,0 @@
|
|
|
1
|
-
import { jsx as _jsx } from "react/jsx-runtime";
|
|
2
|
-
import SvgIcon from "@mui/material/SvgIcon";
|
|
3
|
-
import { IcBellNotiOutlined20Px as outlined } from '../../../assets';
|
|
4
|
-
const variants = ['outlined',];
|
|
5
|
-
const BellNoti = ({ variant = 'outlined', ...rest }) => {
|
|
6
|
-
if (variant === 'outlined') {
|
|
7
|
-
return _jsx(SvgIcon, { ...rest, component: outlined, inheritViewBox: true });
|
|
8
|
-
}
|
|
9
|
-
return null;
|
|
10
|
-
};
|
|
11
|
-
BellNoti.displayName = 'BellNoti';
|
|
12
|
-
BellNoti.variants = variants;
|
|
13
|
-
export default BellNoti;
|
|
14
|
-
//# sourceMappingURL=index.js.map
|
|
@@ -1,14 +0,0 @@
|
|
|
1
|
-
import { jsx as _jsx } from "react/jsx-runtime";
|
|
2
|
-
import SvgIcon from "@mui/material/SvgIcon";
|
|
3
|
-
import { IcCloseLargeOutlined20Px as outlined } from '../../../assets';
|
|
4
|
-
const variants = ['outlined',];
|
|
5
|
-
const CloseLarge = ({ variant = 'outlined', ...rest }) => {
|
|
6
|
-
if (variant === 'outlined') {
|
|
7
|
-
return _jsx(SvgIcon, { ...rest, component: outlined, inheritViewBox: true });
|
|
8
|
-
}
|
|
9
|
-
return null;
|
|
10
|
-
};
|
|
11
|
-
CloseLarge.displayName = 'CloseLarge';
|
|
12
|
-
CloseLarge.variants = variants;
|
|
13
|
-
export default CloseLarge;
|
|
14
|
-
//# sourceMappingURL=index.js.map
|
|
@@ -1,14 +0,0 @@
|
|
|
1
|
-
import { jsx as _jsx } from "react/jsx-runtime";
|
|
2
|
-
import SvgIcon from "@mui/material/SvgIcon";
|
|
3
|
-
import { IcCloseSmallOutlined20Px as outlined } from '../../../assets';
|
|
4
|
-
const variants = ['outlined',];
|
|
5
|
-
const CloseSmall = ({ variant = 'outlined', ...rest }) => {
|
|
6
|
-
if (variant === 'outlined') {
|
|
7
|
-
return _jsx(SvgIcon, { ...rest, component: outlined, inheritViewBox: true });
|
|
8
|
-
}
|
|
9
|
-
return null;
|
|
10
|
-
};
|
|
11
|
-
CloseSmall.displayName = 'CloseSmall';
|
|
12
|
-
CloseSmall.variants = variants;
|
|
13
|
-
export default CloseSmall;
|
|
14
|
-
//# sourceMappingURL=index.js.map
|
|
@@ -1,14 +0,0 @@
|
|
|
1
|
-
import { jsx as _jsx } from "react/jsx-runtime";
|
|
2
|
-
import SvgIcon from "@mui/material/SvgIcon";
|
|
3
|
-
import { IcEllipseOutlined20Px as outlined } from '../../../assets';
|
|
4
|
-
const variants = ['outlined',];
|
|
5
|
-
const Ellipse = ({ variant = 'outlined', ...rest }) => {
|
|
6
|
-
if (variant === 'outlined') {
|
|
7
|
-
return _jsx(SvgIcon, { ...rest, component: outlined, inheritViewBox: true });
|
|
8
|
-
}
|
|
9
|
-
return null;
|
|
10
|
-
};
|
|
11
|
-
Ellipse.displayName = 'Ellipse';
|
|
12
|
-
Ellipse.variants = variants;
|
|
13
|
-
export default Ellipse;
|
|
14
|
-
//# sourceMappingURL=index.js.map
|
|
@@ -1,14 +0,0 @@
|
|
|
1
|
-
import { jsx as _jsx } from "react/jsx-runtime";
|
|
2
|
-
import SvgIcon from "@mui/material/SvgIcon";
|
|
3
|
-
import { IcFilterNotiOutlined20Px as outlined } from '../../../assets';
|
|
4
|
-
const variants = ['outlined',];
|
|
5
|
-
const FilterNoti = ({ variant = 'outlined', ...rest }) => {
|
|
6
|
-
if (variant === 'outlined') {
|
|
7
|
-
return _jsx(SvgIcon, { ...rest, component: outlined, inheritViewBox: true });
|
|
8
|
-
}
|
|
9
|
-
return null;
|
|
10
|
-
};
|
|
11
|
-
FilterNoti.displayName = 'FilterNoti';
|
|
12
|
-
FilterNoti.variants = variants;
|
|
13
|
-
export default FilterNoti;
|
|
14
|
-
//# sourceMappingURL=index.js.map
|
|
@@ -1,14 +0,0 @@
|
|
|
1
|
-
import { jsx as _jsx } from "react/jsx-runtime";
|
|
2
|
-
import SvgIcon from "@mui/material/SvgIcon";
|
|
3
|
-
import { IcHideLargeOutlined20Px as outlined } from '../../../assets';
|
|
4
|
-
const variants = ['outlined',];
|
|
5
|
-
const HideLarge = ({ variant = 'outlined', ...rest }) => {
|
|
6
|
-
if (variant === 'outlined') {
|
|
7
|
-
return _jsx(SvgIcon, { ...rest, component: outlined, inheritViewBox: true });
|
|
8
|
-
}
|
|
9
|
-
return null;
|
|
10
|
-
};
|
|
11
|
-
HideLarge.displayName = 'HideLarge';
|
|
12
|
-
HideLarge.variants = variants;
|
|
13
|
-
export default HideLarge;
|
|
14
|
-
//# sourceMappingURL=index.js.map
|
|
@@ -1,14 +0,0 @@
|
|
|
1
|
-
import { jsx as _jsx } from "react/jsx-runtime";
|
|
2
|
-
import SvgIcon from "@mui/material/SvgIcon";
|
|
3
|
-
import { IcHideSmallOutlined20Px as outlined } from '../../../assets';
|
|
4
|
-
const variants = ['outlined',];
|
|
5
|
-
const HideSmall = ({ variant = 'outlined', ...rest }) => {
|
|
6
|
-
if (variant === 'outlined') {
|
|
7
|
-
return _jsx(SvgIcon, { ...rest, component: outlined, inheritViewBox: true });
|
|
8
|
-
}
|
|
9
|
-
return null;
|
|
10
|
-
};
|
|
11
|
-
HideSmall.displayName = 'HideSmall';
|
|
12
|
-
HideSmall.variants = variants;
|
|
13
|
-
export default HideSmall;
|
|
14
|
-
//# sourceMappingURL=index.js.map
|
|
@@ -1,14 +0,0 @@
|
|
|
1
|
-
import { jsx as _jsx } from "react/jsx-runtime";
|
|
2
|
-
import SvgIcon from "@mui/material/SvgIcon";
|
|
3
|
-
import { IcRectangleOutlined20Px as outlined } from '../../../assets';
|
|
4
|
-
const variants = ['outlined',];
|
|
5
|
-
const Rectangle = ({ variant = 'outlined', ...rest }) => {
|
|
6
|
-
if (variant === 'outlined') {
|
|
7
|
-
return _jsx(SvgIcon, { ...rest, component: outlined, inheritViewBox: true });
|
|
8
|
-
}
|
|
9
|
-
return null;
|
|
10
|
-
};
|
|
11
|
-
Rectangle.displayName = 'Rectangle';
|
|
12
|
-
Rectangle.variants = variants;
|
|
13
|
-
export default Rectangle;
|
|
14
|
-
//# sourceMappingURL=index.js.map
|
|
@@ -1,14 +0,0 @@
|
|
|
1
|
-
import { jsx as _jsx } from "react/jsx-runtime";
|
|
2
|
-
import SvgIcon from "@mui/material/SvgIcon";
|
|
3
|
-
import { IcShowLargeOutlined20Px as outlined } from '../../../assets';
|
|
4
|
-
const variants = ['outlined',];
|
|
5
|
-
const ShowLarge = ({ variant = 'outlined', ...rest }) => {
|
|
6
|
-
if (variant === 'outlined') {
|
|
7
|
-
return _jsx(SvgIcon, { ...rest, component: outlined, inheritViewBox: true });
|
|
8
|
-
}
|
|
9
|
-
return null;
|
|
10
|
-
};
|
|
11
|
-
ShowLarge.displayName = 'ShowLarge';
|
|
12
|
-
ShowLarge.variants = variants;
|
|
13
|
-
export default ShowLarge;
|
|
14
|
-
//# sourceMappingURL=index.js.map
|
|
@@ -1,14 +0,0 @@
|
|
|
1
|
-
import { jsx as _jsx } from "react/jsx-runtime";
|
|
2
|
-
import SvgIcon from "@mui/material/SvgIcon";
|
|
3
|
-
import { IcShowSmallOutlined20Px as outlined } from '../../../assets';
|
|
4
|
-
const variants = ['outlined',];
|
|
5
|
-
const ShowSmall = ({ variant = 'outlined', ...rest }) => {
|
|
6
|
-
if (variant === 'outlined') {
|
|
7
|
-
return _jsx(SvgIcon, { ...rest, component: outlined, inheritViewBox: true });
|
|
8
|
-
}
|
|
9
|
-
return null;
|
|
10
|
-
};
|
|
11
|
-
ShowSmall.displayName = 'ShowSmall';
|
|
12
|
-
ShowSmall.variants = variants;
|
|
13
|
-
export default ShowSmall;
|
|
14
|
-
//# sourceMappingURL=index.js.map
|