1
0
Fork 0

feat(lab): Allow manual edit of pct options

This commit is contained in:
Joost De Cock 2022-01-26 08:52:26 +01:00
parent af4759bd66
commit a4db63f990
3 changed files with 78 additions and 14 deletions

View file

@ -0,0 +1,7 @@
const EditIcon = () => (
<svg xmlns="http://www.w3.org/2000/svg" className="h-6 w-6" fill="none" viewBox="0 0 24 24" stroke="currentColor">
<path strokeLinecap="round" strokeLinejoin="round" strokeWidth={2} d="M11 5H6a2 2 0 00-2 2v11a2 2 0 002 2h11a2 2 0 002-2v-5m-1.414-9.414a2 2 0 112.828 2.828L11.828 15H9v-2.828l8.586-8.586z" />
</svg>
)
export default EditIcon