2
0

perf(e2e): ️ Migrate to Playwright

This commit is contained in:
Baptiste Arnaud
2022-01-28 09:42:31 +01:00
parent c5aaa323d1
commit 73f277fce7
145 changed files with 3104 additions and 2346 deletions

View File

@ -286,3 +286,14 @@ export const WebhookIcon = (props: IconProps) => (
<polygon points="13 2 3 14 12 14 11 22 21 10 12 10 13 2"></polygon>
</Icon>
)
export const GripIcon = (props: IconProps) => (
<Icon viewBox="0 0 24 24" {...featherIconsBaseProps} {...props}>
<circle cx="12" cy="9" r="1"></circle>
<circle cx="19" cy="9" r="1"></circle>
<circle cx="5" cy="9" r="1"></circle>
<circle cx="12" cy="15" r="1"></circle>
<circle cx="19" cy="15" r="1"></circle>
<circle cx="5" cy="15" r="1"></circle>
</Icon>
)

View File

@ -0,0 +1,3 @@
.grabbing * {
cursor: grabbing !important;
}