@liner-fe/prism 2.1.50 → 2.1.51

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.
@@ -160,3 +160,4 @@ export { ICZoomIn } from './zoom-in';
160
160
  export { ICZoomOut } from './zoom-out';
161
161
  export { ICFocus } from './focus';
162
162
  export { ICHelp } from './help';
163
+ export { ICParagraph } from './paragraph';
@@ -0,0 +1,8 @@
1
+ interface ICParagraphProps {
2
+ color?: string;
3
+ fill?: boolean;
4
+ thick?: boolean;
5
+ size?: 16 | 20 | 24 | 32 | 40;
6
+ }
7
+ export declare const ICParagraph: (props: ICParagraphProps) => import("react/jsx-runtime").JSX.Element;
8
+ export {};