Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

[Icons] Add new icons and fix chain icon #54

Merged
merged 1 commit into from
Feb 3, 2021
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
18 changes: 17 additions & 1 deletion src/icons/index.scss
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ $--base-path: '..' !default;
font-style: normal;
font-weight: 400;
font-family: 'qicon';
src: url('#{$--base-path}/icons/qicon.woff?10092020') format('woff');
src: url('#{$--base-path}/icons/qicon.woff?02022021') format('woff');
font-display: block;
}

Expand Down Expand Up @@ -433,3 +433,19 @@ $--base-path: '..' !default;
.q-icon-key::before {
content: '\e964';
}

.q-icon-cart::before {
content: '\e965';
}

.q-icon-house-stroke::before {
content: '\e966';
}

.q-icon-info-fill::before {
content: '\e967';
}

.q-icon-phone-settings-stroke::before {
content: '\e968';
}
Binary file modified src/icons/qicon.woff
Binary file not shown.
3 changes: 3 additions & 0 deletions src/icons/svg/cart.svg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
3 changes: 3 additions & 0 deletions src/icons/svg/house-stroke.svg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
3 changes: 3 additions & 0 deletions src/icons/svg/info-fill.svg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
9 changes: 2 additions & 7 deletions src/icons/svg/key.svg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
3 changes: 3 additions & 0 deletions src/icons/svg/phone-settings-stroke.svg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
6 changes: 5 additions & 1 deletion stories/core/icons.stories.mdx
Original file line number Diff line number Diff line change
Expand Up @@ -110,7 +110,11 @@ export const iconsList = [
'q-icon-y-2',
'q-icon-y-3',
'q-icon-y-4',
'q-icon-key'
'q-icon-key',
'q-icon-cart',
'q-icon-house-stroke',
'q-icon-info-fill',
'q-icon-phone-settings-stroke'
];

<Meta
Expand Down