-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
13 changed files
with
130 additions
and
52 deletions.
There are no files selected for viewing
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
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,6 @@ | ||
import { createIconInner } from '##/icons/Icon/createIconInner'; | ||
|
||
import props from './props'; | ||
import svg from './svg'; | ||
|
||
export const IconCode = createIconInner(props, svg); |
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
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,9 @@ | ||
import * as React from 'react'; | ||
import { SVGProps } from 'react'; | ||
|
||
const IconCodeSizeL = (props: SVGProps<SVGSVGElement>) => ( | ||
<svg viewBox="0 0 24 24" xmlns="http://www.w3.org/2000/svg" {...props}> | ||
<path d="M4.571 6a3 3 0 0 1 3-3H9v2H7.571a1 1 0 0 0-1 1v2.355a3 3 0 0 1-1.158 2.368L4 11.823v.355l1.413 1.099a3 3 0 0 1 1.158 2.368V18a1 1 0 0 0 1 1H9v2H7.571a3 3 0 0 1-3-3v-2.355a1 1 0 0 0-.386-.79L2 13.155v-2.31l2.185-1.7a1 1 0 0 0 .386-.79V6ZM16.43 5H15V3h1.429a3 3 0 0 1 3 3v1.866a2 2 0 0 0 .772 1.579l1.799 1.4v2.31l-1.8 1.4a2 2 0 0 0-.771 1.579V18a3 3 0 0 1-3 3H15v-2h1.429a1 1 0 0 0 1-1v-1.866a4 4 0 0 1 1.544-3.158L20 12.178v-.356l-1.027-.798a4 4 0 0 1-1.544-3.158V6a1 1 0 0 0-1-1Zm-.571 2.514-6 10-1.715-1.029 6-10 1.714 1.03Z" /> | ||
</svg> | ||
); | ||
export default IconCodeSizeL; |
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
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,9 @@ | ||
import * as React from 'react'; | ||
import { SVGProps } from 'react'; | ||
|
||
const IconCodeSizeM = (props: SVGProps<SVGSVGElement>) => ( | ||
<svg viewBox="0 0 16 16" xmlns="http://www.w3.org/2000/svg" {...props}> | ||
<path d="M2 4a3 3 0 0 1 3-3h1v2H5a1 1 0 0 0-1 1v1a3 3 0 0 1-1.2 2.4L2 8l.8.6A3 3 0 0 1 4 11v1a1 1 0 0 0 1 1h1v2H5a3 3 0 0 1-3-3v-1a1 1 0 0 0-.4-.8L0 9V7l1.6-1.2A1 1 0 0 0 2 5V4Zm9-1h-1V1h1a3 3 0 0 1 3 3v.5a2 2 0 0 0 .8 1.6L16 7v2l-1.2.9a2 2 0 0 0-.8 1.6v.5a3 3 0 0 1-3 3h-1v-2h1a1 1 0 0 0 1-1v-.5a4 4 0 0 1 1.6-3.2L14 8l-.4-.3A4 4 0 0 1 12 4.5V4a1 1 0 0 0-1-1Zm-.132 1.996-4 7-1.736-.992 4-7 1.736.992Z" /> | ||
</svg> | ||
); | ||
export default IconCodeSizeM; |
Oops, something went wrong.