Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Fix the background, arrowUpLeft, keyboardReturn and square icons. #69076

Merged
merged 2 commits into from
Feb 6, 2025
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion packages/icons/src/library/arrow-up-left.js
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
import { SVG, Path } from '@wordpress/primitives';

const arrowUpLeft = (
<SVG width="24" height="24" fill="none" xmlns="http://www.w3.org/2000/svg">
<SVG xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24">
<Path d="M14 6H6v8h1.5V8.5L17 18l1-1-9.5-9.5H14V6Z" />
</SVG>
);
Expand Down
2 changes: 1 addition & 1 deletion packages/icons/src/library/background.js
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
import { Path, SVG } from '@wordpress/primitives';

const background = (
<SVG width="24" height="24" fill="none" xmlns="http://www.w3.org/2000/svg">
<SVG xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24">
<Path
fillRule="evenodd"
clipRule="evenodd"
Expand Down
2 changes: 1 addition & 1 deletion packages/icons/src/library/keyboard-return.js
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
import { SVG, Path } from '@wordpress/primitives';

const keyboardReturn = (
<SVG xmlns="http://www.w3.org/2000/svg">
<SVG xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24">
<Path d="m6.734 16.106 2.176-2.38-1.093-1.028-3.846 4.158 3.846 4.158 1.093-1.028-2.176-2.38h2.811c1.125 0 2.25.03 3.374 0 1.428-.001 3.362-.25 4.963-1.277 1.66-1.065 2.868-2.906 2.868-5.859 0-2.479-1.327-4.896-3.65-5.93-1.82-.813-3.044-.8-4.806-.788l-.567.002v1.5c.184 0 .368 0 .553-.002 1.82-.007 2.704-.014 4.21.657 1.854.827 2.76 2.657 2.76 4.561 0 2.472-.973 3.824-2.178 4.596-1.258.807-2.864 1.04-4.163 1.04h-.02c-1.115.03-2.229 0-3.344 0H6.734Z" />
</SVG>
);
Expand Down
2 changes: 1 addition & 1 deletion packages/icons/src/library/square.js
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
import { SVG, Path } from '@wordpress/primitives';

const square = (
<SVG xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24" fill="none">
<SVG xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24">
<Path
fill="none"
d="M5.75 12.75V18.25H11.25M12.75 5.75H18.25V11.25"
Expand Down
Loading