mirror of
https://github.com/p-stream/p-stream.git
synced 2026-04-17 22:31:33 +00:00
Fix icons
This commit is contained in:
parent
af648708de
commit
4289b96039
1 changed files with 1 additions and 2 deletions
|
|
@ -1,4 +1,3 @@
|
|||
import classNames from "classnames";
|
||||
import { memo, useEffect, useRef } from "react";
|
||||
|
||||
export enum Icons {
|
||||
|
|
@ -114,7 +113,7 @@ export const Icon = memo((props: IconProps) => {
|
|||
return (
|
||||
<span
|
||||
dangerouslySetInnerHTML={{ __html: iconList[props.icon] }} // eslint-disable-line react/no-danger
|
||||
className={classNames(props.className, "inline-block")}
|
||||
className={props.className}
|
||||
/>
|
||||
);
|
||||
});
|
||||
|
|
|
|||
Loading…
Reference in a new issue