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

add rename icon #367

Merged
merged 1 commit into from
Jul 17, 2024
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
Original file line number Diff line number Diff line change
@@ -0,0 +1,19 @@
<template>
<Icon
:fill="fill"
:fillColor="fillColor"
:color="color"
:class="classes"
:style="style"
>
<Rename />
</Icon>
</template>

<script>
import Rename from "../BIMDataLibraryIcons/Rename.vue";
import makeIcon from "./iconFactory.js";
export default makeIcon("Rename", Rename);
</script>

<style scoped lang="scss" src="../_BIMDataIcon.scss"></style>
Original file line number Diff line number Diff line change
Expand Up @@ -100,6 +100,7 @@ export { default as BIMDataIconRedo } from "./BIMDataIconRedo.vue";
export { default as BIMDataIconReduced } from "./BIMDataIconReduced.vue";
export { default as BIMDataIconRefresh } from "./BIMDataIconRefresh.vue";
export { default as BIMDataIconRemoveModel } from "./BIMDataIconRemoveModel.vue";
export { default as BIMDataIconRename } from "./BIMDataIconRename.vue";
export { default as BIMDataIconReprocessIfc } from "./BIMDataIconReprocessIfc.vue";
export { default as BIMDataIconReset } from "./BIMDataIconReset.vue";
export { default as BIMDataIconRestore } from "./BIMDataIconRestore.vue";
Expand Down
12 changes: 12 additions & 0 deletions src/BIMDataComponents/BIMDataIcon/BIMDataLibraryIcons/Rename.vue
Original file line number Diff line number Diff line change
@@ -0,0 +1,12 @@
<template>
<g>
<path
d="M10.8535 23V20.4444H13.4091V2.55556H10.8535V0H18.5202V2.55556H15.9646V20.4444H18.5202V23H10.8535Z"
/>
<path
fill-rule="evenodd"
clip-rule="evenodd"
d="M15.9652 6H13.4091V8.5H15.9652V6ZM18.5284 14.5H19.9688C20.2449 14.5 20.4688 14.2761 20.4688 14V9C20.4688 8.72386 20.2449 8.5 19.9688 8.5H18.5284V6H19.9688C21.6256 6 22.9688 7.34314 22.9688 9V14C22.9688 15.6569 21.6256 17 19.9688 17H18.5284V14.5ZM15.9652 14.5H13.4091V17H15.9652V14.5ZM3.03125 6H10.8447V8.5H3.03125C2.75511 8.5 2.53125 8.72386 2.53125 9V14C2.53125 14.2761 2.75511 14.5 3.03125 14.5H10.8447V17H3.03125C1.3744 17 0.03125 15.6569 0.03125 14V9C0.03125 7.34314 1.3744 6 3.03125 6Z"
/>
</g>
</template>
Original file line number Diff line number Diff line change
Expand Up @@ -100,6 +100,7 @@ import redo from "./Redo.vue";
import reduced from "./Reduced.vue";
import refresh from "./Refresh.vue";
import removeModel from "./RemoveModel.vue";
import rename from "./Rename.vue";
import reprocessIfc from "./ReprocessIfc.vue";
import reset from "./Reset.vue";
import restore from "./Restore.vue";
Expand Down Expand Up @@ -275,6 +276,7 @@ export default {
reduced,
refresh,
removeModel,
rename,
reprocessIfc,
reset,
restore,
Expand Down