-
Notifications
You must be signed in to change notification settings - Fork 4.3k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Move border style icons to icons package
- Loading branch information
1 parent
975097b
commit 6428068
Showing
6 changed files
with
51 additions
and
38 deletions.
There are no files selected for viewing
30 changes: 0 additions & 30 deletions
30
packages/block-editor/src/components/border-style-control/icons.js
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,16 @@ | ||
/** | ||
* WordPress dependencies | ||
*/ | ||
import { Path, SVG } from '@wordpress/primitives'; | ||
|
||
const lineDashed = ( | ||
<SVG xmlns="http://www.w3.org/2000/svg" width="24" height="24" fill="none"> | ||
<Path | ||
fillRule="evenodd" | ||
d="M5 11.25h3v1.5H5v-1.5zm5.5 0h3v1.5h-3v-1.5zm8.5 0h-3v1.5h3v-1.5z" | ||
clipRule="evenodd" | ||
/> | ||
</SVG> | ||
); | ||
|
||
export default lineDashed; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,16 @@ | ||
/** | ||
* WordPress dependencies | ||
*/ | ||
import { Path, SVG } from '@wordpress/primitives'; | ||
|
||
const lineDotted = ( | ||
<SVG xmlns="http://www.w3.org/2000/svg" width="24" height="24" fill="none"> | ||
<Path | ||
fillRule="evenodd" | ||
d="M5.25 11.25h1.5v1.5h-1.5v-1.5zm3 0h1.5v1.5h-1.5v-1.5zm4.5 0h-1.5v1.5h1.5v-1.5zm1.5 0h1.5v1.5h-1.5v-1.5zm4.5 0h-1.5v1.5h1.5v-1.5z" | ||
clipRule="evenodd" | ||
/> | ||
</SVG> | ||
); | ||
|
||
export default lineDotted; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,12 @@ | ||
/** | ||
* WordPress dependencies | ||
*/ | ||
import { Path, SVG } from '@wordpress/primitives'; | ||
|
||
const lineSolid = ( | ||
<SVG xmlns="http://www.w3.org/2000/svg" width="24" height="24" fill="none"> | ||
<Path d="M5 11.25h14v1.5H5z" /> | ||
</SVG> | ||
); | ||
|
||
export default lineSolid; |