waveterm/frontend/app/element/magnify.tsx

19 lines
414 B
TypeScript
Raw Permalink Normal View History

// Copyright 2024, Command Line Inc.
// SPDX-License-Identifier: Apache-2.0
import clsx from "clsx";
import MagnifySVG from "../asset/magnify.svg";
import "./magnify.scss";
interface MagnifyIconProps {
enabled: boolean;
}
export function MagnifyIcon({ enabled }: MagnifyIconProps) {
return (
<div className={clsx("magnify-icon", { enabled })}>
<MagnifySVG />
</div>
);
}