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

OHRM5X-1385: Added thumbs up/down icons #341

Merged
merged 3 commits into from
May 30, 2022
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
2 changes: 1 addition & 1 deletion components/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "oxd-components",
"version": "1.0.6-alpha.2",
"version": "1.0.6-alpha.3",
"license": "GPL-3.0",
"scripts": {
"test:unit": "vue-cli-service test:unit",
Expand Down
2 changes: 2 additions & 0 deletions components/src/core/components/Icon/map.ts
Original file line number Diff line number Diff line change
Expand Up @@ -30,3 +30,5 @@ export {default as maintenance} from './svg/maintenance-svg.vue';
export {default as myinfo} from './svg/myinfo-svg.vue';
export {default as search} from './svg/search-svg.vue';
export {default as guide} from './svg/guide-svg.vue';
export {default as thumbsup} from './svg/thumbsup-svg.vue';
export {default as thumbsdown} from './svg/thumbsdown-svg.vue';
31 changes: 31 additions & 0 deletions components/src/core/components/Icon/svg/thumbsdown-svg.vue
Original file line number Diff line number Diff line change
@@ -0,0 +1,31 @@
<!--
/*
* This file is part of OrangeHRM Inc
*
* Copyright (C) 2020 onwards OrangeHRM Inc
*
* This program is free software; you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by
* the Free Software Foundation; either version 3 of the License, or
* (at your option) any later version.
*
* This program is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU General Public License for more details.
*
* You should have received a copy of the GNU General Public License
* along with this program. If not, see http://www.gnu.org/licenses
*/
-->

<template>
<g transform="matrix(2.6906, 0, 0, 2.4145, -1911.572388, -1913.391968)">
<path
d="M751.157,908.377h-31.521c-3.31,0-5.995-2.685-5.995-5.995V801.996c0-3.312,2.685-5.996,5.995-5.996h25.424 c3.26,0,5.921,2.604,5.994,5.863l0.103,4.605V908.377L751.157,908.377z"
/>
<path
d="M867.548,923.739c-15.131,0-40.775,0-40.775,0s1.458,7.302,5.521,39.327C835.748,990.283,816.745,996,804.466,996 l-41.794-99.999v-87.216l21.421-5.784c9.838-2.657,19.989-4.004,30.179-4.004h29.068c11.352,0,21.403,7.373,24.826,18.197 c9.536,30.142,19.473,61.532,23.368,73.899C898.183,912.198,882.686,923.739,867.548,923.739z"
Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

@Super-Chama is this reviewed? 😆

Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

@RajithaKumara oh you have no idea 🤣

/>
</g>
</template>
31 changes: 31 additions & 0 deletions components/src/core/components/Icon/svg/thumbsup-svg.vue
Original file line number Diff line number Diff line change
@@ -0,0 +1,31 @@
<!--
/*
* This file is part of OrangeHRM Inc
*
* Copyright (C) 2020 onwards OrangeHRM Inc
*
* This program is free software; you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by
* the Free Software Foundation; either version 3 of the License, or
* (at your option) any later version.
*
* This program is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU General Public License for more details.
*
* You should have received a copy of the GNU General Public License
* along with this program. If not, see http://www.gnu.org/licenses
*/
-->

<template>
<g transform="matrix(2.690608, 0, 0, 2.414501, -1929.610718, -1913.392822)">
<path
d="M757.859,883.623h-31.521c-3.31,0-5.995,2.685-5.995,5.996v100.385c0,3.312,2.685,5.996,5.995,5.996h25.424 c3.259,0,5.921-2.604,5.995-5.863l0.102-4.605V883.623L757.859,883.623z"
/>
<path
d="M874.249,868.261c-15.132,0-40.775,0-40.775,0s1.458-7.302,5.521-39.328C842.448,801.717,823.446,796,811.168,796 l-41.794,99.999v87.216l21.422,5.784c9.838,2.656,19.988,4.004,30.179,4.004h29.067c11.352,0,21.403-7.374,24.826-18.197 c9.536-30.143,19.473-61.532,23.368-73.899C904.884,879.802,889.386,868.261,874.249,868.261z"
/>
</g>
</template>
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{
"name": "oxd",
"license": "GPL-3.0",
"version": "1.0.6-alpha.2",
"version": "1.0.6-alpha.3",
"private": true,
"workspaces": [
"components",
Expand Down