Skip to content

Commit d876056

Browse files
committed
Added Pencil24 Icon
1 parent 00ff306 commit d876056

File tree

7 files changed

+40
-9
lines changed

7 files changed

+40
-9
lines changed

package-lock.json

+5-5
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

package.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@toniq-labs/design-system-root",
3-
"version": "16.26.1",
3+
"version": "16.27.0",
44
"private": true,
55
"description": "Root design system mono-repo package.",
66
"homepage": "https://github.com/Toniq-Labs/toniq-labs-design-system",

packages/design-system/package.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@toniq-labs/design-system",
3-
"version": "16.26.1",
3+
"version": "16.27.0",
44
"private": false,
55
"description": "Design system elements for Toniq Labs",
66
"keywords": [

packages/design-system/src/icons/index.ts

+3
Original file line numberDiff line numberDiff line change
@@ -70,6 +70,7 @@ import {Ordinals24Icon} from './svgs/core-24/ordinals-24.icon';
7070
import {Outbound24Icon} from './svgs/core-24/outbound-24.icon';
7171
import {Pamphlet24Icon} from './svgs/core-24/pamphlet-24.icon';
7272
import {Paper24Icon} from './svgs/core-24/paper-24.icon';
73+
import {Pencil24Icon} from './svgs/core-24/pencil-24.icon';
7374
import {People24Icon} from './svgs/core-24/people-24.icon';
7475
import {Person24Icon} from './svgs/core-24/person-24.icon';
7576
import {Photo24Icon} from './svgs/core-24/photo-24.icon';
@@ -213,6 +214,7 @@ export * from './svgs/core-24/ordinals-24.icon';
213214
export * from './svgs/core-24/outbound-24.icon';
214215
export * from './svgs/core-24/pamphlet-24.icon';
215216
export * from './svgs/core-24/paper-24.icon';
217+
export * from './svgs/core-24/pencil-24.icon';
216218
export * from './svgs/core-24/people-24.icon';
217219
export * from './svgs/core-24/person-24.icon';
218220
export * from './svgs/core-24/photo-24.icon';
@@ -362,6 +364,7 @@ export const allIconsByCategory = {
362364
Outbound24Icon,
363365
Pamphlet24Icon,
364366
Paper24Icon,
367+
Pencil24Icon,
365368
People24Icon,
366369
Person24Icon,
367370
Photo24Icon,
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,28 @@
1+
import {html} from 'element-vir';
2+
import {defineIcon} from 'vira';
3+
import {toniqIconCssVars} from '../../../styles/icon-css-vars';
4+
5+
export const Pencil24Icon = defineIcon({
6+
name: 'Pencil24Icon',
7+
svgTemplate: html`
8+
<svg
9+
xmlns="http://www.w3.org/2000/svg"
10+
stroke=${toniqIconCssVars['toniq-icon-stroke-color'].value}
11+
fill=${toniqIconCssVars['toniq-icon-fill-color'].value}
12+
stroke-linecap="round"
13+
stroke-linejoin="round"
14+
width="24"
15+
height="24"
16+
viewBox="0 0 24 24"
17+
>
18+
<path
19+
stroke-width=${toniqIconCssVars['toniq-icon-stroke-width'].value}
20+
d="M4 19.9998H8L18.5 9.49981C18.7626 9.23717 18.971 8.92537 19.1131 8.58221C19.2553 8.23905 19.3284 7.87125 19.3284 7.49981C19.3284 7.12838 19.2553 6.76058 19.1131 6.41742C18.971 6.07426 18.7626 5.76246 18.5 5.49981C18.2374 5.23717 17.9256 5.02883 17.5824 4.88669C17.2392 4.74455 16.8714 4.67139 16.5 4.67139C16.1286 4.67139 15.7608 4.74455 15.4176 4.88669C15.0744 5.02883 14.7626 5.23717 14.5 5.49981L4 15.9998V19.9998Z"
21+
/>
22+
<path
23+
stroke-width=${toniqIconCssVars['toniq-icon-stroke-width'].value}
24+
d="M13.5 6.5L17.5 10.5"
25+
/>
26+
</svg>
27+
`,
28+
});

packages/native-elements-test/package.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@toniq-labs/design-system-native-elements-test",
3-
"version": "16.26.1",
3+
"version": "16.27.0",
44
"private": true,
55
"scripts": {
66
"compile": "virmator compile",

packages/scripts/package.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@toniq-labs/design-system-scripts",
3-
"version": "16.26.1",
3+
"version": "16.27.0",
44
"private": true,
55
"scripts": {
66
"compile": "virmator compile",

0 commit comments

Comments
 (0)