-
Notifications
You must be signed in to change notification settings - Fork 4
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
4 changed files
with
44 additions
and
0 deletions.
There are no files selected for viewing
20 changes: 20 additions & 0 deletions
20
src/BIMDataComponents/BIMDataIcon/BIMDataIconStandalone/BIMDataIconRotate.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> | ||
<Icon | ||
:fill="fill" | ||
:fillColor="fillColor" | ||
:color="color" | ||
:class="classes" | ||
:style="style" | ||
> | ||
<Rotate /> | ||
</Icon> | ||
</template> | ||
|
||
<script> | ||
import Rotate from "../BIMDataLibraryIcons/Rotate.vue"; | ||
import makeIcon from "./iconFactory.js"; | ||
export default makeIcon("Rotate", Rotate); | ||
</script> | ||
|
||
<style scoped lang="scss" src="../_BIMDataIcon.scss"></style> |
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
21 changes: 21 additions & 0 deletions
21
src/BIMDataComponents/BIMDataIcon/BIMDataLibraryIcons/Rotate.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,21 @@ | ||
<template> | ||
<g> | ||
<path | ||
fill-rule="evenodd" | ||
clip-rule="evenodd" | ||
d="M0 10.6467L6.93668 3.70998L13.8734 10.6467L6.93668 17.5834L0 10.6467ZM1.59334 10.6467L6.93668 15.99L12.28 10.6467L6.93668 5.30332L1.59334 10.6467Z" | ||
/> | ||
<path | ||
fill-rule="evenodd" | ||
clip-rule="evenodd" | ||
d="M15.1134 1.9234L11.7334 4.74005L15.1134 7.5567V5.55645C16.0724 5.63287 17.008 5.90383 17.8623 6.35499C18.8831 6.89413 19.7569 7.67431 20.4078 8.62779C21.0587 9.58127 21.467 10.6792 21.5973 11.8263C21.7275 12.9734 21.5758 14.135 21.1553 15.2101C20.7348 16.2853 20.0582 17.2415 19.1843 17.9959C18.3104 18.7502 17.2655 19.2798 16.1404 19.5387C15.0154 19.7976 13.8441 19.7779 12.7284 19.4814C11.6126 19.1849 10.5861 18.6205 9.738 17.8373L8.81714 18.8344C9.82758 19.7676 11.0505 20.4399 12.3798 20.7932C13.709 21.1464 15.1044 21.1698 16.4448 20.8614C17.7852 20.553 19.03 19.922 20.0712 19.0234C21.1124 18.1247 21.9184 16.9854 22.4194 15.7045C22.9204 14.4236 23.1011 13.0398 22.9459 11.6732C22.7907 10.3065 22.3043 8.99848 21.5288 7.86253C20.7534 6.72658 19.7123 5.7971 18.4961 5.15478C17.4464 4.60039 16.2936 4.27439 15.1134 4.19552V1.9234Z" | ||
/> | ||
<rect | ||
x="6.89673" | ||
y="4.31342" | ||
width="8.57002" | ||
height="8.76336" | ||
transform="rotate(45 6.89673 4.31342)" | ||
/> | ||
</g> | ||
</template> |
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