Skip to content

Commit

Permalink
[minor][v16.20.0]Added GameController24 Icon (#130)
Browse files Browse the repository at this point in the history
  • Loading branch information
ponnexcodev authored Jul 3, 2024
1 parent 7eadbc9 commit d85c960
Show file tree
Hide file tree
Showing 7 changed files with 40 additions and 9 deletions.
10 changes: 5 additions & 5 deletions package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@toniq-labs/design-system-root",
"version": "16.19.0",
"version": "16.20.0",
"private": true,
"description": "Root design system mono-repo package.",
"homepage": "https://github.com/Toniq-Labs/toniq-labs-design-system",
Expand Down
2 changes: 1 addition & 1 deletion packages/design-system/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@toniq-labs/design-system",
"version": "16.19.0",
"version": "16.20.0",
"private": false,
"description": "Design system elements for Toniq Labs",
"keywords": [
Expand Down
3 changes: 3 additions & 0 deletions packages/design-system/src/icons/index.ts
Original file line number Diff line number Diff line change
Expand Up @@ -44,6 +44,7 @@ import {ExternalLink24Icon} from './svgs/core-24/external-link-24.icon';
import {Filter24Icon} from './svgs/core-24/filter-24.icon';
import {Fire24Icon} from './svgs/core-24/fire-24.icon';
import {FrameBolt24Icon} from './svgs/core-24/frame-bolt-24.icon';
import {GameController24Icon} from './svgs/core-24/game-controller-24.icon';
import {Gear24Icon} from './svgs/core-24/gear-24.icon';
import {Geometry24Icon} from './svgs/core-24/geometry-24.icon';
import {Gift24Icon} from './svgs/core-24/gift-24.icon';
Expand Down Expand Up @@ -175,6 +176,7 @@ export * from './svgs/core-24/external-link-24.icon';
export * from './svgs/core-24/filter-24.icon';
export * from './svgs/core-24/fire-24.icon';
export * from './svgs/core-24/frame-bolt-24.icon';
export * from './svgs/core-24/game-controller-24.icon';
export * from './svgs/core-24/gear-24.icon';
export * from './svgs/core-24/geometry-24.icon';
export * from './svgs/core-24/gift-24.icon';
Expand Down Expand Up @@ -312,6 +314,7 @@ export const allIconsByCategory = {
Filter24Icon,
Fire24Icon,
FrameBolt24Icon,
GameController24Icon,
Gear24Icon,
Geometry24Icon,
Gift24Icon,
Expand Down
Original file line number Diff line number Diff line change
@@ -0,0 +1,28 @@
import {html} from 'element-vir';
import {defineIcon} from 'vira';
import {toniqIconCssVars} from '../../../styles/icon-css-vars';

export const GameController24Icon = defineIcon({
name: 'GameController24Icon',
svgTemplate: html`
<svg
xmlns="http://www.w3.org/2000/svg"
stroke=${toniqIconCssVars['toniq-icon-stroke-color'].value}
fill="none"
stroke-linecap="round"
stroke-linejoin="round"
width="24"
height="24"
viewBox="0 0 24 24"
>
<path
stroke-width=${toniqIconCssVars['toniq-icon-stroke-width'].value}
d="M10 5a2 2 0 1 0 4 0 2 2 0 0 0-4 0m10 7.5v4.75a.7.7 0 0 1-.055.325.7.7 0 0 1-.348.366l-5.462 2.58a5 5 0 0 1-4.27 0l-5.462-2.58a.705.705 0 0 1-.4-.691V12.5"
/>
<path
stroke-width=${toniqIconCssVars['toniq-icon-stroke-width'].value}
d="m4.431 12.216 5.634-2.332a5.07 5.07 0 0 1 3.87 0l5.634 2.332a.692.692 0 0 1 .028 1.27l-5.462 2.542a5.07 5.07 0 0 1-4.27 0l-5.462-2.543a.691.691 0 0 1 .028-1.269M12 7v6"
/>
</svg>
`,
});
2 changes: 1 addition & 1 deletion packages/native-elements-test/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@toniq-labs/design-system-native-elements-test",
"version": "16.19.0",
"version": "16.20.0",
"private": true,
"scripts": {
"compile": "virmator compile",
Expand Down
2 changes: 1 addition & 1 deletion packages/scripts/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@toniq-labs/design-system-scripts",
"version": "16.19.0",
"version": "16.20.0",
"private": true,
"scripts": {
"compile": "virmator compile",
Expand Down

0 comments on commit d85c960

Please sign in to comment.