pcm-shared-components 0.0.24 → 0.0.27
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,8 +1,8 @@
|
|
|
1
1
|
import React from 'react';
|
|
2
2
|
import CustomFab from '../CustomFab/CustomFab';
|
|
3
3
|
import HelpOutlineIcon from '@mui/icons-material/HelpOutline';
|
|
4
|
-
import PropTypes from 'prop-types';
|
|
5
|
-
|
|
4
|
+
import PropTypes from 'prop-types'; // import '../../../styles/tailwind.css';
|
|
5
|
+
|
|
6
6
|
export const HelpButton = props => {
|
|
7
7
|
const {
|
|
8
8
|
onClickLink,
|
|
@@ -2,9 +2,9 @@ import React, { useState } from 'react';
|
|
|
2
2
|
import * as Prism from 'prismjs';
|
|
3
3
|
import { memo, useEffect, useRef } from 'react';
|
|
4
4
|
import './prism-languages';
|
|
5
|
-
import PropTypes from 'prop-types';
|
|
6
|
-
import '../../../styles/
|
|
7
|
-
|
|
5
|
+
import PropTypes from 'prop-types'; // import '../../../styles/tailwind.css';
|
|
6
|
+
// import '../../../styles/prism.css';
|
|
7
|
+
|
|
8
8
|
export const CodeHighlight = props => {
|
|
9
9
|
const domNode = useRef(null);
|
|
10
10
|
const source = useRef(trimCode());
|