diff --git a/src/front/Components/DesignSystem/Button/classes.module.scss b/src/front/Components/DesignSystem/Button/classes.module.scss index 7e91bc16..d367db76 100644 --- a/src/front/Components/DesignSystem/Button/classes.module.scss +++ b/src/front/Components/DesignSystem/Button/classes.module.scss @@ -629,6 +629,7 @@ padding: var(--spacing-0-5) var(--spacing-1-5); gap: var(--spacing-0-75); font-size: 14px; + height: 32px; } &[sizing="md"] { diff --git a/src/front/Components/DesignSystem/Form/TextField/index.tsx b/src/front/Components/DesignSystem/Form/TextField/index.tsx index ae033882..915cc7c0 100644 --- a/src/front/Components/DesignSystem/Form/TextField/index.tsx +++ b/src/front/Components/DesignSystem/Form/TextField/index.tsx @@ -1,12 +1,10 @@ import React from "react"; import Typography, { ETypo, ETypoColor } from "@Front/Components/DesignSystem/Typography"; import { ReactNode } from "react"; -import CopyIcon from "@Assets/Icons/copy.svg"; import BaseField, { IProps as IBaseFieldProps } from "../BaseField"; import classes from "./classes.module.scss"; import classnames from "classnames"; -import Image from "next/image"; -import { XMarkIcon } from "@heroicons/react/24/outline"; +import { XMarkIcon, Square2StackIcon } from "@heroicons/react/24/outline"; export type IProps = IBaseFieldProps & { canCopy?: boolean; password?: boolean; @@ -42,7 +40,7 @@ export default class TextField extends BaseField { /> {this.props.canCopy && !this.hasError() && (
- Copy icon +
)} {this.hasError() && (