import "./ToolIcon.scss"; import React from "react"; import clsx from "clsx"; type LockIconSize = "s" | "m"; type LockIconProps = { title?: string; name?: string; id?: string; checked: boolean; onChange?(): void; size?: LockIconSize; zenModeEnabled?: boolean; }; const DEFAULT_SIZE: LockIconSize = "m"; const ICONS = { CHECKED: ( ), UNCHECKED: ( ), }; export const LockIcon = (props: LockIconProps) => { return ( ); };