mirror of
https://github.com/wavetermdev/waveterm.git
synced 2025-03-11 13:23:06 +01:00
16 lines
337 B
TypeScript
16 lines
337 B
TypeScript
|
import clsx from "clsx";
|
||
|
import MagnifySVG from "../asset/magnify.svg";
|
||
|
import "./magnify.less";
|
||
|
|
||
|
interface MagnifyIconProps {
|
||
|
enabled: boolean;
|
||
|
}
|
||
|
|
||
|
export function MagnifyIcon({ enabled }: MagnifyIconProps) {
|
||
|
return (
|
||
|
<div className={clsx("magnify-icon", { enabled })}>
|
||
|
<MagnifySVG />
|
||
|
</div>
|
||
|
);
|
||
|
}
|