@liner-fe/prism 1.6.14 → 1.6.15

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.
@@ -1,6 +1,6 @@
1
1
  import { ButtonHTMLAttributes } from 'react';
2
2
  import { VariantProps } from 'class-variance-authority';
3
- import { IconKey } from '@/utils/icon';
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,6 +1,6 @@
1
1
  import { VariantProps } from 'class-variance-authority';
2
- import { IconKey } from '@/utils/icon';
3
- import { IconMapType } from '@/type';
2
+ import { IconKey } from '../../utils/icon';
3
+ import { IconMapType } from '../../type';
4
4
  declare const iconSizeMap: {
5
5
  readonly xs: 16;
6
6
  readonly s: 20;
@@ -13,7 +13,7 @@ declare const iconVariants: (props?: ({
13
13
  type?: "neutralLabelPrimary" | "neutralLabelSecondary" | "neutralLabelTertiary" | "neutralLabelQuaternary" | "neutralLabelStaticPrimary" | "neutralLabelStaticSecondary" | "brandLabelPrimary" | "brandLabelSecondary" | "functionLabelPositive" | "functionLabelNegative" | "functionLabelCaution" | null | undefined;
14
14
  } & import("class-variance-authority/types").ClassProp) | undefined) => string;
15
15
  type IconType = 'neutralLabelPrimary' | 'neutralLabelSecondary' | 'neutralLabelTertiary' | 'neutralLabelQuaternary' | 'neutralLabelStaticPrimary' | 'neutralLabelStaticSecondary' | 'brandLabelPrimary' | 'brandLabelSecondary' | 'functionLabelPositive' | 'functionLabelNegative' | 'functionLabelCaution';
16
- export declare const getIconComponent: (iconKey: IconKey, map: IconMapType) => import("@/type").IconComponent;
16
+ export declare const getIconComponent: (iconKey: IconKey, map: IconMapType) => import("../../type").IconComponent;
17
17
  type IconSizeKey = keyof typeof iconSizeMap;
18
18
  export interface IconProps extends VariantProps<typeof iconVariants> {
19
19
  name: IconKey;