-
Notifications
You must be signed in to change notification settings - Fork 11
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
feat(icons): New artificial intelligence and my handy icons (#1310)
- Loading branch information
1 parent
2c57982
commit 433db7c
Showing
26 changed files
with
211 additions
and
21 deletions.
There are no files selected for viewing
Binary file modified
BIN
+1.02 KB
(100%)
..._snapshots__/icons-screenshot-test-tsx-icons-catalog-for-blau-filled-1-snap.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file modified
BIN
+3.42 KB
(100%)
...e_snapshots__/icons-screenshot-test-tsx-icons-catalog-for-blau-light-1-snap.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file modified
BIN
+2.74 KB
(100%)
...snapshots__/icons-screenshot-test-tsx-icons-catalog-for-blau-regular-1-snap.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file modified
BIN
+1.23 KB
(100%)
...pshots__/icons-screenshot-test-tsx-icons-catalog-for-movistar-filled-1-snap.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file modified
BIN
+2.02 KB
(100%)
...apshots__/icons-screenshot-test-tsx-icons-catalog-for-movistar-light-1-snap.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file modified
BIN
+1.49 KB
(100%)
...shots__/icons-screenshot-test-tsx-icons-catalog-for-movistar-regular-1-snap.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file modified
BIN
+579 Bytes
(100%)
...e_snapshots__/icons-screenshot-test-tsx-icons-catalog-for-o-2-filled-1-snap.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file modified
BIN
+4.95 KB
(100%)
...ge_snapshots__/icons-screenshot-test-tsx-icons-catalog-for-o-2-light-1-snap.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file modified
BIN
+2.99 KB
(100%)
..._snapshots__/icons-screenshot-test-tsx-icons-catalog-for-o-2-regular-1-snap.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file modified
BIN
-213 Bytes
(100%)
...screenshot-test-tsx-components-with-portals-render-properly-desktop-14-snap.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file modified
BIN
+190 Bytes
(100%)
...ots__/private-skin-components-screenshot-test-tsx-components-in-blau-2-snap.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
28 changes: 28 additions & 0 deletions
28
src/generated/mistica-icons/icon-artificial-intelligence-filled.tsx
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,28 @@ | ||
'use client'; | ||
/* | ||
* This file was autogenerated. Don't edit this file! | ||
* | ||
* To update, execute "yarn start" inside "import-mistica-icons" | ||
*/ | ||
|
||
import * as React from 'react'; | ||
import {useIsInverseOrMediaVariant} from '../../theme-variant-context'; | ||
import {vars} from '../../skins/skin-contract.css'; | ||
|
||
import type {IconProps} from '../../utils/types'; | ||
|
||
const IconArtificialIntelligenceFilled = ({color, size = 24, ...rest}: IconProps): JSX.Element => { | ||
const isInverse = useIsInverseOrMediaVariant(); | ||
const fillColor = color ?? (isInverse ? vars.colors.inverse : vars.colors.neutralHigh); | ||
|
||
return ( | ||
<svg width={size} height={size} viewBox="0 0 24 24" role="presentation" {...rest}> | ||
<path | ||
fill={fillColor} | ||
d="m4.332 7.975-.79-1.75-1.75-.79a.5.5 0 0 1 0-.91l1.75-.79.79-1.76a.5.5 0 0 1 .91 0l.79 1.75 1.76.79a.5.5 0 0 1 0 .91l-1.75.79-.79 1.76c-.18.39-.74.39-.92 0M6.539 22.014l-.79-1.75-1.75-.79a.5.5 0 0 1 0-.91l1.75-.79.79-1.76a.5.5 0 0 1 .91 0l.79 1.75 1.76.79a.5.5 0 0 1 0 .91l-1.75.79-.79 1.76c-.18.39-.74.39-.92 0M15.006 6l-1.59 3.5-3.5 1.59c-.78.35-.78 1.46 0 1.82l3.5 1.59 1.59 3.5c.35.78 1.46.78 1.82 0l1.59-3.5 3.5-1.59c.78-.35.78-1.46 0-1.82l-3.5-1.59-1.59-3.5c-.35-.78-1.47-.78-1.82 0" | ||
/> | ||
</svg> | ||
); | ||
}; | ||
|
||
export default IconArtificialIntelligenceFilled; |
28 changes: 28 additions & 0 deletions
28
src/generated/mistica-icons/icon-artificial-intelligence-light.tsx
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,28 @@ | ||
'use client'; | ||
/* | ||
* This file was autogenerated. Don't edit this file! | ||
* | ||
* To update, execute "yarn start" inside "import-mistica-icons" | ||
*/ | ||
|
||
import * as React from 'react'; | ||
import {useIsInverseOrMediaVariant} from '../../theme-variant-context'; | ||
import {vars} from '../../skins/skin-contract.css'; | ||
|
||
import type {IconProps} from '../../utils/types'; | ||
|
||
const IconArtificialIntelligenceLight = ({color, size = 24, ...rest}: IconProps): JSX.Element => { | ||
const isInverse = useIsInverseOrMediaVariant(); | ||
const fillColor = color ?? (isInverse ? vars.colors.inverse : vars.colors.neutralHigh); | ||
|
||
return ( | ||
<svg width={size} height={size} viewBox="0 0 24 24" role="presentation" {...rest}> | ||
<path | ||
fill={fillColor} | ||
d="m3.541 6.225.79 1.75c.18.39.74.39.92 0l.79-1.76 1.75-.79a.5.5 0 0 0 0-.91l-1.76-.79-.79-1.75a.5.5 0 0 0-.91 0l-.79 1.76-1.75.79a.5.5 0 0 0 0 .91zm.658-.658-.83-.374a.237.237 0 0 1 0-.432l.83-.374.374-.834a.237.237 0 0 1 .432 0l.374.83.834.374a.237.237 0 0 1 0 .431l-.83.374-.373.835a.24.24 0 0 1-.437 0zM15.006 6l-1.59 3.5-3.5 1.59c-.78.35-.78 1.46 0 1.82l3.5 1.59 1.59 3.5c.35.78 1.46.78 1.82 0l1.59-3.5 3.5-1.59c.78-.35.78-1.46 0-1.82l-3.5-1.59-1.59-3.5c-.35-.78-1.47-.78-1.82 0m-.721 7.631-3.46-1.475c-.258-.18 0-.29 0-.29l3.46-1.484 1.39-3.26c.131-.275.372-.38.521 0l1.338 3.247 3.34 1.427c.183.081.164.264.045.32l-3.371 1.502-1.46 3.165c-.098.197-.285.34-.434 0zM6.539 22.014l-.79-1.75-1.75-.79a.5.5 0 0 1 0-.91l1.75-.79.79-1.76a.5.5 0 0 1 .91 0l.79 1.75 1.76.79a.5.5 0 0 1 0 .91l-1.75.79-.79 1.76c-.18.39-.74.39-.92 0m.242-1.578a.24.24 0 0 0 .436 0l.374-.835.83-.374a.237.237 0 0 0 0-.431l-.835-.375-.374-.83a.237.237 0 0 0-.431 0l-.375.835-.83.374a.237.237 0 0 0 0 .432l.83.374z" | ||
/> | ||
</svg> | ||
); | ||
}; | ||
|
||
export default IconArtificialIntelligenceLight; |
28 changes: 28 additions & 0 deletions
28
src/generated/mistica-icons/icon-artificial-intelligence-regular.tsx
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,28 @@ | ||
'use client'; | ||
/* | ||
* This file was autogenerated. Don't edit this file! | ||
* | ||
* To update, execute "yarn start" inside "import-mistica-icons" | ||
*/ | ||
|
||
import * as React from 'react'; | ||
import {useIsInverseOrMediaVariant} from '../../theme-variant-context'; | ||
import {vars} from '../../skins/skin-contract.css'; | ||
|
||
import type {IconProps} from '../../utils/types'; | ||
|
||
const IconArtificialIntelligenceRegular = ({color, size = 24, ...rest}: IconProps): JSX.Element => { | ||
const isInverse = useIsInverseOrMediaVariant(); | ||
const fillColor = color ?? (isInverse ? vars.colors.inverse : vars.colors.neutralHigh); | ||
|
||
return ( | ||
<svg width={size} height={size} viewBox="0 0 24 24" role="presentation" {...rest}> | ||
<path | ||
fill={fillColor} | ||
d="m4.332 7.975-.79-1.75-1.75-.79a.5.5 0 0 1 0-.91l1.75-.79.79-1.76a.5.5 0 0 1 .91 0l.79 1.75 1.76.79a.5.5 0 0 1 0 .91l-1.75.79-.79 1.76c-.18.39-.74.39-.92 0M6.539 22.014l-.79-1.75-1.75-.79a.5.5 0 0 1 0-.91l1.75-.79.79-1.76a.5.5 0 0 1 .91 0l.79 1.75 1.76.79a.5.5 0 0 1 0 .91l-1.75.79-.79 1.76c-.18.39-.74.39-.92 0M13.416 9.5l1.59-3.5c.35-.78 1.47-.78 1.82 0l1.59 3.5 3.5 1.59c.78.36.78 1.47 0 1.82l-3.5 1.59-1.59 3.5c-.36.78-1.47.78-1.82 0l-1.59-3.5-3.5-1.59c-.78-.36-.78-1.47 0-1.82zm2.04 5.5c.18.39.74.39.92 0l.79-1.76 1.75-.79a.5.5 0 0 0 0-.91l-1.76-.79-.79-1.75a.5.5 0 0 0-.91 0l-.79 1.76-1.75.79a.5.5 0 0 0 0 .91l1.75.79z" | ||
/> | ||
</svg> | ||
); | ||
}; | ||
|
||
export default IconArtificialIntelligenceRegular; |
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,28 @@ | ||
'use client'; | ||
/* | ||
* This file was autogenerated. Don't edit this file! | ||
* | ||
* To update, execute "yarn start" inside "import-mistica-icons" | ||
*/ | ||
|
||
import * as React from 'react'; | ||
import {useIsInverseOrMediaVariant} from '../../theme-variant-context'; | ||
import {vars} from '../../skins/skin-contract.css'; | ||
|
||
import type {IconProps} from '../../utils/types'; | ||
|
||
const IconMyHandyFilled = ({color, size = 24, ...rest}: IconProps): JSX.Element => { | ||
const isInverse = useIsInverseOrMediaVariant(); | ||
const fillColor = color ?? (isInverse ? vars.colors.inverse : vars.colors.neutralHigh); | ||
|
||
return ( | ||
<svg width={size} height={size} viewBox="0 0 24 24" role="presentation" {...rest}> | ||
<path | ||
fill={fillColor} | ||
d="M15.079 2c1.823 0 3.318 1.504 3.41 3.388H5.507C5.6 3.504 7.094 2 8.918 2zM18.5 6.46h-13v11.08h13zM8.349 10.276q.048-.054.144-.054h.384l.02.507q.045-.082.1-.153a1 1 0 0 1 .372-.3q.216-.108.468-.108.306 0 .528.144.222.138.336.39.02.04.035.082.058-.113.133-.208a1 1 0 0 1 .372-.3q.216-.108.468-.108.306 0 .528.144.222.138.336.39.12.246.12.564v1.86h-.456q-.096 0-.144-.048a.2.2 0 0 1-.048-.144V11.35q0-.198-.054-.348a.46.46 0 0 0-.18-.24.54.54 0 0 0-.324-.09.65.65 0 0 0-.372.102.65.65 0 0 0-.222.294 1.3 1.3 0 0 0-.072.462v1.596h-.648V11.35q0-.198-.054-.348a.46.46 0 0 0-.18-.24.54.54 0 0 0-.324-.09.65.65 0 0 0-.372.102.65.65 0 0 0-.222.294 1.2 1.2 0 0 0-.078.462v1.596H8.3v-2.712q0-.09.048-.138m4.94 4.242a.7.7 0 0 1-.138-.024q-.102-.018-.144-.066-.042-.042-.042-.12v-.318l.198.024q.108.012.192.012.21 0 .354-.066a.6.6 0 0 0 .264-.216q.114-.156.228-.444l.09-.216-1.17-2.628q-.048-.102-.012-.168.042-.066.156-.066h.444l.882 2.13.816-2.13h.654l-1.26 3.078q-.18.438-.36.696a1.2 1.2 0 0 1-.42.396q-.24.132-.582.132-.072 0-.15-.006M5.508 18.612C5.596 20.496 7.09 22 8.918 22h6.157c1.827 0 3.322-1.504 3.41-3.388z" | ||
/> | ||
</svg> | ||
); | ||
}; | ||
|
||
export default IconMyHandyFilled; |
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,32 @@ | ||
'use client'; | ||
/* | ||
* This file was autogenerated. Don't edit this file! | ||
* | ||
* To update, execute "yarn start" inside "import-mistica-icons" | ||
*/ | ||
|
||
import * as React from 'react'; | ||
import {useIsInverseOrMediaVariant} from '../../theme-variant-context'; | ||
import {vars} from '../../skins/skin-contract.css'; | ||
|
||
import type {IconProps} from '../../utils/types'; | ||
|
||
const IconMyHandyLight = ({color, size = 24, ...rest}: IconProps): JSX.Element => { | ||
const isInverse = useIsInverseOrMediaVariant(); | ||
const fillColor = color ?? (isInverse ? vars.colors.inverse : vars.colors.neutralHigh); | ||
|
||
return ( | ||
<svg width={size} height={size} viewBox="0 0 24 24" role="presentation" {...rest}> | ||
<path | ||
fill={fillColor} | ||
d="M8.25 10.38q0-.094.049-.143.047-.056.146-.056h.39l.02.524q.045-.086.101-.159.159-.204.378-.31.219-.111.475-.111a.95.95 0 0 1 .536.149q.225.143.34.403.02.04.037.084a1.3 1.3 0 0 1 .134-.214q.158-.205.377-.31.22-.112.475-.112a.95.95 0 0 1 .536.149q.225.143.341.403.122.254.122.582v1.922h-.463q-.098 0-.146-.05a.22.22 0 0 1-.049-.149v-1.636q0-.204-.054-.36a.47.47 0 0 0-.183-.247.55.55 0 0 0-.329-.093.65.65 0 0 0-.377.105.67.67 0 0 0-.226.304 1.4 1.4 0 0 0-.073.477v1.649h-.657v-1.835q0-.204-.055-.36a.47.47 0 0 0-.183-.247.55.55 0 0 0-.329-.093.65.65 0 0 0-.377.105.67.67 0 0 0-.225.304q-.08.198-.08.477v1.649H8.25zM13.464 14.625q-.074 0-.152-.006a.7.7 0 0 1-.14-.025q-.104-.018-.146-.068-.043-.044-.043-.124v-.329l.201.025q.11.012.195.012a.85.85 0 0 0 .36-.068.6.6 0 0 0 .267-.223q.115-.16.232-.459l.09-.223-1.186-2.715q-.05-.105-.013-.173.044-.069.159-.068h.45l.895 2.2.828-2.2h.664l-1.279 3.18a4 4 0 0 1-.365.718 1.25 1.25 0 0 1-.426.41q-.244.135-.59.136" | ||
/> | ||
<path | ||
fill={fillColor} | ||
d="M15.216 2H8.784A3.58 3.58 0 0 0 5.212 5.57v12.856A3.58 3.58 0 0 0 8.784 22h6.428a3.58 3.58 0 0 0 3.572-3.572V5.571c0-1.968-1.6-3.572-3.568-3.572M6.644 17.36V6.642H17.36V17.36zM6.672 5.21a2.15 2.15 0 0 1 2.112-1.784h6.428c1.06 0 1.94.772 2.112 1.784zm8.544 15.36H8.784c-1.06 0-1.94-.772-2.112-1.784h10.652a2.14 2.14 0 0 1-2.108 1.784" | ||
/> | ||
</svg> | ||
); | ||
}; | ||
|
||
export default IconMyHandyLight; |
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,32 @@ | ||
'use client'; | ||
/* | ||
* This file was autogenerated. Don't edit this file! | ||
* | ||
* To update, execute "yarn start" inside "import-mistica-icons" | ||
*/ | ||
|
||
import * as React from 'react'; | ||
import {useIsInverseOrMediaVariant} from '../../theme-variant-context'; | ||
import {vars} from '../../skins/skin-contract.css'; | ||
|
||
import type {IconProps} from '../../utils/types'; | ||
|
||
const IconMyHandyRegular = ({color, size = 24, ...rest}: IconProps): JSX.Element => { | ||
const isInverse = useIsInverseOrMediaVariant(); | ||
const fillColor = color ?? (isInverse ? vars.colors.inverse : vars.colors.neutralHigh); | ||
|
||
return ( | ||
<svg width={size} height={size} viewBox="0 0 24 24" role="presentation" {...rest}> | ||
<path | ||
fill={fillColor} | ||
d="M8.25 10.38q0-.094.049-.143.047-.056.146-.056h.39l.02.524q.045-.086.101-.159.159-.204.378-.31.219-.111.475-.111a.95.95 0 0 1 .536.149q.225.143.34.403.02.04.037.084a1.3 1.3 0 0 1 .134-.214q.158-.205.377-.31.22-.112.475-.112a.95.95 0 0 1 .536.149q.225.143.341.403.122.254.122.582v1.922h-.463q-.097 0-.146-.05a.22.22 0 0 1-.049-.149v-1.636q0-.204-.054-.36a.47.47 0 0 0-.183-.247.55.55 0 0 0-.329-.093.65.65 0 0 0-.377.105.67.67 0 0 0-.226.304 1.4 1.4 0 0 0-.073.477v1.649h-.657v-1.835q0-.204-.055-.36a.47.47 0 0 0-.183-.247.55.55 0 0 0-.329-.093.65.65 0 0 0-.377.105.67.67 0 0 0-.225.304q-.08.198-.08.477v1.649H8.25zM13.464 14.625q-.074 0-.152-.006a.7.7 0 0 1-.14-.025q-.104-.018-.146-.068-.043-.044-.043-.124v-.329l.201.025q.11.012.195.012a.85.85 0 0 0 .36-.068.6.6 0 0 0 .267-.223q.115-.16.232-.459l.09-.223-1.186-2.715q-.05-.105-.013-.173.044-.069.159-.068h.45l.895 2.2.828-2.2h.664l-1.279 3.18a4 4 0 0 1-.365.718 1.26 1.26 0 0 1-.426.41q-.244.135-.59.136" | ||
/> | ||
<path | ||
fill={fillColor} | ||
d="M15.216 2H8.784A3.58 3.58 0 0 0 5.212 5.57v12.856A3.58 3.58 0 0 0 8.784 22h6.428a3.58 3.58 0 0 0 3.572-3.572V5.571c0-1.968-1.6-3.572-3.568-3.572M6.644 17.36V6.642H17.36V17.36zM6.672 5.21a2.15 2.15 0 0 1 2.112-1.784h6.428c1.06 0 1.94.772 2.112 1.784zm8.544 15.36H8.784c-1.06 0-1.94-.772-2.112-1.784h10.652a2.14 2.14 0 0 1-2.108 1.784" | ||
/> | ||
</svg> | ||
); | ||
}; | ||
|
||
export default IconMyHandyRegular; |
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
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
Oops, something went wrong.
433db7c
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Deploy preview for mistica-web ready!
✅ Preview
https://mistica-o5lv4rr5m-flows-projects-65bb050e.vercel.app
Built with commit 433db7c.
This pull request is being automatically deployed with vercel-action