-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
feat(icons): add counters, tune, cloud-upload icons
- Loading branch information
Showing
36 changed files
with
506 additions
and
0 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
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
20 changes: 20 additions & 0 deletions
20
packages/wiz-ui-next/src/components/icons/cloud-upload.vue
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,20 @@ | ||
<template> | ||
<svg | ||
xmlns="http://www.w3.org/2000/svg" | ||
height="1em" | ||
viewBox="0 -960 960 960" | ||
width="1em" | ||
> | ||
<path | ||
d="m460-496.77-70.62 70.39q-5.42 5.61-13.55 5.61-8.14 0-13.98-5.85-6.39-5.61-6-14.15.38-8.54 6-14.15l95.53-95.54q9.7-9.69 22.62-9.69 12.92 0 22.62 9.69l95.53 95.54q5.62 5.61 6.12 13.95t-6.12 14.41q-5.61 5.56-14.03 5.29-8.43-.27-14.27-5.88L500-496.77v232.15q0 9.24 7.69 16.93 7.69 7.69 16.93 7.69H740q42 0 71-29t29-71q0-42-29-71t-71-29h-60v-80q0-83-58.5-141.5T480-720q-83 0-141.5 58.5T280-520h-21.54q-55.69 0-97.08 41Q120-438 120-380t41 99q41 41 99 41h80q8.5 0 14.25 5.76t5.75 14.27q0 8.51-5.75 14.24T340-200h-80q-74.85 0-127.42-52.06Q80-304.11 80-379.31q0-71.07 48.92-123.23 48.93-52.15 114.93-56.08Q257.31-646 324.23-703q66.92-57 155.77-57 100.29 0 170.14 69.86Q720-620.29 720-520v40h24.62q57.46 1.85 96.42 42.19Q880-397.46 880-340q0 58.85-39.81 99.42Q800.38-200 741.54-200H524.62q-27.62 0-46.12-18.5Q460-237 460-264.62v-232.15ZM480-460Z" | ||
/> | ||
</svg> | ||
</template> | ||
|
||
<script setup lang="ts"> | ||
import { ComponentName } from "@wizleap-inc/wiz-ui-constants"; | ||
defineOptions({ | ||
name: ComponentName.ICloudUpload, | ||
}); | ||
</script> |
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,20 @@ | ||
<template> | ||
<svg | ||
xmlns="http://www.w3.org/2000/svg" | ||
height="1em" | ||
viewBox="0 -960 960 960" | ||
width="1em" | ||
> | ||
<path | ||
d="M480.13-120q-74.67 0-140.41-28.34-65.73-28.34-114.36-76.92-48.63-48.58-76.99-114.26Q120-405.19 120-479.87q0-74.67 28.34-140.41 28.34-65.73 76.92-114.36 48.58-48.63 114.26-76.99Q405.19-840 479.87-840q74.67 0 140.41 28.34 65.73 28.34 114.36 76.92 48.63 48.58 76.99 114.26Q840-554.81 840-480.13q0 74.67-28.34 140.41-28.34 65.73-76.92 114.36-48.58 48.63-114.26 76.99Q554.81-120 480.13-120Zm-.13-40q134 0 227-93t93-227q0-134-93-227t-227-93q-134 0-227 93t-93 227q0 134 93 227t227 93Zm0-320Zm0-140v300q0 8.5 5.76 14.25t14.27 5.75q8.51 0 14.24-5.75T520-320v-307.69q0-13.73-9.29-23.02T487.69-660H420q-8.5 0-14.25 5.76T400-639.97q0 8.51 5.75 14.24T420-620h60Z" | ||
/> | ||
</svg> | ||
</template> | ||
|
||
<script setup lang="ts"> | ||
import { ComponentName } from "@wizleap-inc/wiz-ui-constants"; | ||
defineOptions({ | ||
name: ComponentName.ICounter1, | ||
}); | ||
</script> |
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,20 @@ | ||
<template> | ||
<svg | ||
xmlns="http://www.w3.org/2000/svg" | ||
height="1em" | ||
viewBox="0 -960 960 960" | ||
width="1em" | ||
> | ||
<path | ||
d="M480.13-120q-74.67 0-140.41-28.34-65.73-28.34-114.36-76.92-48.63-48.58-76.99-114.26Q120-405.19 120-479.87q0-74.67 28.34-140.41 28.34-65.73 76.92-114.36 48.58-48.63 114.26-76.99Q405.19-840 479.87-840q74.67 0 140.41 28.34 65.73 28.34 114.36 76.92 48.63 48.58 76.99 114.26Q840-554.81 840-480.13q0 74.67-28.34 140.41-28.34 65.73-76.92 114.36-48.58 48.63-114.26 76.99Q554.81-120 480.13-120Zm-.13-40q134 0 227-93t93-227q0-134-93-227t-227-93q-134 0-227 93t-93 227q0 134 93 227t227 93Zm0-320Zm80 180q8.5 0 14.25-5.76t5.75-14.27q0-8.51-5.75-14.24T560-340H420v-95.38q0-10.77 6.92-17.7 6.93-6.92 17.7-6.92h70.76q27.62 0 46.12-18.5Q580-497 580-524.62v-70.76q0-27.62-18.5-46.12Q543-660 515.38-660H400q-8.5 0-14.25 5.76T380-639.97q0 8.51 5.75 14.24T400-620h115.38q10.77 0 17.7 6.92 6.92 6.93 6.92 17.7v70.76q0 10.77-6.92 17.7-6.93 6.92-17.7 6.92h-70.76q-27.62 0-46.12 18.5Q380-463 380-435.38v103.07q0 13.73 9.29 23.02t23.02 9.29H560Z" | ||
/> | ||
</svg> | ||
</template> | ||
|
||
<script setup lang="ts"> | ||
import { ComponentName } from "@wizleap-inc/wiz-ui-constants"; | ||
defineOptions({ | ||
name: ComponentName.ICounter2, | ||
}); | ||
</script> |
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,20 @@ | ||
<template> | ||
<svg | ||
xmlns="http://www.w3.org/2000/svg" | ||
height="1em" | ||
viewBox="0 -960 960 960" | ||
width="1em" | ||
> | ||
<path | ||
d="M480.13-120q-74.67 0-140.41-28.34-65.73-28.34-114.36-76.92-48.63-48.58-76.99-114.26Q120-405.19 120-479.87q0-74.67 28.34-140.41 28.34-65.73 76.92-114.36 48.58-48.63 114.26-76.99Q405.19-840 479.87-840q74.67 0 140.41 28.34 65.73 28.34 114.36 76.92 48.63 48.58 76.99 114.26Q840-554.81 840-480.13q0 74.67-28.34 140.41-28.34 65.73-76.92 114.36-48.58 48.63-114.26 76.99Q554.81-120 480.13-120Zm-.13-40q134 0 227-93t93-227q0-134-93-227t-227-93q-134 0-227 93t-93 227q0 134 93 227t227 93Zm0-320Zm-80 180h115.38q27.62 0 46.12-18.5Q580-337 580-364.62v-66.15q0-23.69-12.38-35.31Q555.23-477.69 540-480q15.23-2.31 27.62-13.92Q580-505.54 580-529.23v-66.15q0-27.62-18.5-46.12Q543-660 515.38-660H400q-8.5 0-14.25 5.76T380-639.97q0 8.51 5.75 14.24T400-620h115.38q10.77 0 17.7 6.92 6.92 6.93 6.92 17.7v70.76q0 10.77-6.92 17.7-6.93 6.92-17.7 6.92h-50.76q-8.5 0-14.25 5.76t-5.75 14.27q0 8.51 5.75 14.24t14.25 5.73h50.76q10.77 0 17.7 6.92 6.92 6.93 6.92 17.7v70.76q0 10.77-6.92 17.7-6.93 6.92-17.7 6.92H400q-8.5 0-14.25 5.76T380-319.97q0 8.51 5.75 14.24T400-300Z" | ||
/> | ||
</svg> | ||
</template> | ||
|
||
<script setup lang="ts"> | ||
import { ComponentName } from "@wizleap-inc/wiz-ui-constants"; | ||
defineOptions({ | ||
name: ComponentName.ICounter3, | ||
}); | ||
</script> |
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,20 @@ | ||
<template> | ||
<svg | ||
xmlns="http://www.w3.org/2000/svg" | ||
height="1em" | ||
viewBox="0 -960 960 960" | ||
width="1em" | ||
> | ||
<path | ||
d="M480.13-120q-74.67 0-140.41-28.34-65.73-28.34-114.36-76.92-48.63-48.58-76.99-114.26Q120-405.19 120-479.87q0-74.67 28.34-140.41 28.34-65.73 76.92-114.36 48.58-48.63 114.26-76.99Q405.19-840 479.87-840q74.67 0 140.41 28.34 65.73 28.34 114.36 76.92 48.63 48.58 76.99 114.26Q840-554.81 840-480.13q0 74.67-28.34 140.41-28.34 65.73-76.92 114.36-48.58 48.63-114.26 76.99Q554.81-120 480.13-120Zm-.13-40q134 0 227-93t93-227q0-134-93-227t-227-93q-134 0-227 93t-93 227q0 134 93 227t227 93Zm0-320Zm60 20v140q0 8.5 5.76 14.25t14.27 5.75q8.51 0 14.24-5.75T580-320v-320q0-8.5-5.76-14.25T559.97-660q-8.51 0-14.24 5.75T540-640v140H420v-140q0-8.5-5.76-14.25T399.97-660q-8.51 0-14.24 5.75T380-640v147.69q0 13.73 9.29 23.02t23.02 9.29H540Z" | ||
/> | ||
</svg> | ||
</template> | ||
|
||
<script setup lang="ts"> | ||
import { ComponentName } from "@wizleap-inc/wiz-ui-constants"; | ||
defineOptions({ | ||
name: ComponentName.ICounter4, | ||
}); | ||
</script> |
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,20 @@ | ||
<template> | ||
<svg | ||
xmlns="http://www.w3.org/2000/svg" | ||
height="1em" | ||
viewBox="0 -960 960 960" | ||
width="1em" | ||
> | ||
<path | ||
d="M480.13-120q-74.67 0-140.41-28.34-65.73-28.34-114.36-76.92-48.63-48.58-76.99-114.26Q120-405.19 120-479.87q0-74.67 28.34-140.41 28.34-65.73 76.92-114.36 48.58-48.63 114.26-76.99Q405.19-840 479.87-840q74.67 0 140.41 28.34 65.73 28.34 114.36 76.92 48.63 48.58 76.99 114.26Q840-554.81 840-480.13q0 74.67-28.34 140.41-28.34 65.73-76.92 114.36-48.58 48.63-114.26 76.99Q554.81-120 480.13-120Zm-.13-40q134 0 227-93t93-227q0-134-93-227t-227-93q-134 0-227 93t-93 227q0 134 93 227t227 93Zm0-320Zm-80 180h115.38q27.62 0 46.12-18.5Q580-337 580-364.62v-70.76q0-27.62-18.5-46.12Q543-500 515.38-500H420v-120h140q8.5 0 14.25-5.76t5.75-14.27q0-8.51-5.75-14.24T560-660H412.31q-13.73 0-23.02 9.19t-9.29 23.5v134.62q0 14.31 9.29 23.5t23.02 9.19h103.07q10.77 0 17.7 6.92 6.92 6.93 6.92 17.7v70.76q0 10.77-6.92 17.7-6.93 6.92-17.7 6.92H400q-8.5 0-14.25 5.76T380-319.97q0 8.51 5.75 14.24T400-300Z" | ||
/> | ||
</svg> | ||
</template> | ||
|
||
<script setup lang="ts"> | ||
import { ComponentName } from "@wizleap-inc/wiz-ui-constants"; | ||
defineOptions({ | ||
name: ComponentName.ICounter5, | ||
}); | ||
</script> |
Oops, something went wrong.