@liner-fe/prism 1.11.0 → 1.11.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.
@@ -1,4 +1,4 @@
1
- import { ACCENT, BOLD, ITypographyCommon, MEDIUM, NORMAL, POST, REGULAR } from './types';
1
+ import { ACCENT, ANSWER, BOLD, ITypographyCommon, MEDIUM, NORMAL, POST, REGULAR } from './types';
2
2
  export interface IPropsNormal extends ITypographyCommon {
3
3
  type: NORMAL;
4
4
  size: 1 | 2 | 3 | 4;
@@ -14,5 +14,10 @@ export interface IPropsAccent extends ITypographyCommon {
14
14
  size: 1 | 2 | 3;
15
15
  weight: REGULAR | MEDIUM | BOLD;
16
16
  }
17
- export type ParagraphProps = IPropsNormal | IPropsPost | IPropsAccent;
17
+ export interface IPropsAnswer extends ITypographyCommon {
18
+ type: ANSWER;
19
+ size: 1;
20
+ weight: BOLD | REGULAR;
21
+ }
22
+ export type ParagraphProps = IPropsNormal | IPropsPost | IPropsAccent | IPropsAnswer;
18
23
  export declare const Paragraph: ({ size, type, weight, className, children, color, ...rest }: ParagraphProps) => import("react/jsx-runtime").JSX.Element;