|
@@ -5,6 +5,8 @@ import { PropertyChangedEvent } from "../../propertyChangedEvent";
|
|
|
import { NumericInputComponent } from "./numericInputComponent";
|
|
|
import { FontAwesomeIcon } from "@fortawesome/react-fontawesome";
|
|
|
import { faMinus, faPlus, faCopy } from "@fortawesome/free-solid-svg-icons";
|
|
|
+import CopyIcon from "./copy.svg";
|
|
|
+
|
|
|
|
|
|
export interface IColor3LineComponentProps {
|
|
|
label: string;
|
|
@@ -135,7 +137,7 @@ export class Color3LineComponent extends React.Component<IColor3LineComponentPro
|
|
|
<input type="color" value={colorAsColor3.toHexString()} onChange={(evt) => this.onChange(evt.target.value)} />
|
|
|
</div>
|
|
|
<div className="copy hoverIcon" onClick={() => this.copyToClipboard()} title="Copy to clipboard">
|
|
|
- <FontAwesomeIcon icon={faCopy} />
|
|
|
+ <img src={CopyIcon} alt=""/>
|
|
|
</div>
|
|
|
<div className="expand hoverIcon" onClick={() => this.switchExpandState()} title="Expand">
|
|
|
{chevron}
|