Skip to content
Snippets Groups Projects
Unverified Commit 32dcb86e authored by Samuel Couillard's avatar Samuel Couillard Committed by GitHub
Browse files

Fix Access Codes Icons (#4304)

parent 4414bfdd
No related branches found
No related tags found
No related merge requests found
......@@ -25,7 +25,7 @@ export default function AccessCodeRow({
const deleteButton = config === 'optional' ? (
<Button
variant="font-awesome"
variant="icon"
onClick={handleDeleteCode}
>
<TrashIcon className="hi-s text-muted" />
......@@ -42,14 +42,16 @@ export default function AccessCodeRow({
<div className="access-code-input w-100">
<input type="text" className="form-control" value={code} readOnly />
<Button
variant="font-awesome"
variant="icon"
className="mt-1"
onClick={() => copyAccessCode(code)}
>
<Square2StackIcon className="hi-s text-muted" />
</Button>
</div>
<Button
variant="font-awesome"
variant="icon"
className="mx-3"
onClick={handleGenerateCode}
>
<ArrowPathIcon className="hi-s text-muted" />
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment