@liner-fe/prism 1.6.10 → 1.6.12

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.
@@ -2,6 +2,7 @@ export { ICCloseFill } from './close-fill';
2
2
  export { ICMore } from './more';
3
3
  export { ICLiner } from './liner';
4
4
  export { ICLinerVariation } from './liner-variation';
5
+ export { ICPersonFill } from './person-fill';
5
6
  export { ICHistory } from './history';
6
7
  export { ICStart } from './start';
7
8
  export { ICEnd } from './end';
@@ -30,6 +31,7 @@ export { ICArrowDown } from './arrow-down';
30
31
  export { ICMenu } from './menu';
31
32
  export { ICDocumentWarning } from './document-warning';
32
33
  export { ICArrowRight } from './arrow-right';
34
+ export { ICStep } from './step';
33
35
  export { ICChartBar } from './chart-bar';
34
36
  export { ICChartLineUptrend } from './chart-line-uptrend';
35
37
  export { ICFolder } from './folder';
@@ -0,0 +1,8 @@
1
+ interface ICPersonFillProps {
2
+ color?: string;
3
+ fill?: boolean;
4
+ thick?: boolean;
5
+ size?: 16 | 20 | 24 | 32 | 40;
6
+ }
7
+ export declare const ICPersonFill: (props: ICPersonFillProps) => import("react/jsx-runtime").JSX.Element | undefined;
8
+ export {};
@@ -0,0 +1,8 @@
1
+ interface ICStepProps {
2
+ color?: string;
3
+ fill?: boolean;
4
+ thick?: boolean;
5
+ size?: 16 | 20 | 24 | 32 | 40;
6
+ }
7
+ export declare const ICStep: (props: ICStepProps) => import("react/jsx-runtime").JSX.Element;
8
+ export {};
@@ -1,6 +1,6 @@
1
1
  import { ButtonHTMLAttributes } from 'react';
2
2
  import { VariantProps } from 'class-variance-authority';
3
- import { IconKey } from '@/type';
3
+ import { IconKey } from '@/utils/icon';
4
4
  declare const defaultButtonVariants: (props?: ({
5
5
  level?: "primary" | "secondary" | "tertiary" | "quaternary" | "error" | "inverse" | null | undefined;
6
6
  fill?: "solid" | "ghost" | null | undefined;
@@ -1,5 +1,6 @@
1
1
  import { VariantProps } from 'class-variance-authority';
2
- import { IconKey, IconMapType } from '@/type';
2
+ import { IconKey } from '@/utils/icon';
3
+ import { IconMapType } from '@/type';
3
4
  declare const iconSizeMap: {
4
5
  readonly xs: 16;
5
6
  readonly s: 20;