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

PATCH: feat(icons): add plan icon, remove deploy icon #348

Merged
merged 1 commit into from
Apr 4, 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
Expand Up @@ -6,15 +6,15 @@
:class="classes"
:style="style"
>
<Deploy />
<Plan />
</Icon>
</template>

<script>
import Deploy from "../BIMDataLibraryIcons/Deploy.vue";
import Plan from "../BIMDataLibraryIcons/Plan.vue";
import makeIcon from "./iconFactory.js";

export default makeIcon("Deploy", Deploy);
export default makeIcon("Plan", Plan);
</script>

<style scoped lang="scss" src="../_BIMDataIcon.scss"></style>
Original file line number Diff line number Diff line change
Expand Up @@ -36,7 +36,6 @@ export { default as BIMDataIconDateDescending } from "./BIMDataIconDateDescendin
export { default as BIMDataIconDefault } from "./BIMDataIconDefault.vue";
export { default as BIMDataIconDelete } from "./BIMDataIconDelete.vue";
export { default as BIMDataIconDeniedFile } from "./BIMDataIconDeniedFile.vue";
export { default as BIMDataIconDeploy } from "./BIMDataIconDeploy.vue";
export { default as BIMDataIconDetach } from "./BIMDataIconDetach.vue";
export { default as BIMDataIconDistance } from "./BIMDataIconDistance.vue";
export { default as BIMDataIconDoubleChevron } from "./BIMDataIconDoubleChevron.vue";
Expand Down Expand Up @@ -89,6 +88,7 @@ export { default as BIMDataIconParameters } from "./BIMDataIconParameters.vue";
export { default as BIMDataIconPathway } from "./BIMDataIconPathway.vue";
export { default as BIMDataIconPieGraph } from "./BIMDataIconPieGraph.vue";
export { default as BIMDataIconPipette } from "./BIMDataIconPipette.vue";
export { default as BIMDataIconPlan } from "./BIMDataIconPlan.vue";
export { default as BIMDataIconPlus } from "./BIMDataIconPlus.vue";
export { default as BIMDataIconPreview } from "./BIMDataIconPreview.vue";
export { default as BIMDataIconProject } from "./BIMDataIconProject.vue";
Expand Down

This file was deleted.

Original file line number Diff line number Diff line change
@@ -0,0 +1,7 @@
<template>
<path
fill-rule="evenodd"
clip-rule="evenodd"
d="M15.1538 22.7195L8.07692 20.1016L1 23V2.83604L8.07692 0.280488L15.1538 2.89837L22.2308 0V20.164L15.1538 22.7195ZM13.9744 19.6653V5.07995L9.25641 3.33469V17.9201L13.9744 19.6653ZM16.3333 19.6653L19.8718 18.4187V3.64634L16.3333 5.07995V19.6653ZM3.35897 19.3537L6.89744 17.9201V3.33469L3.35897 4.5813V19.3537Z"
/>
</template>
Original file line number Diff line number Diff line change
Expand Up @@ -36,7 +36,6 @@ import dateDescending from "./DateDescending.vue";
import Default from "./Default.vue";
import Delete from "./Delete.vue";
import deniedFile from "./DeniedFile.vue";
import deploy from "./Deploy.vue";
import detach from "./Detach.vue";
import distance from "./Distance.vue";
import doubleChevron from "./DoubleChevron.vue";
Expand Down Expand Up @@ -89,6 +88,7 @@ import parameters from "./Parameters.vue";
import pathway from "./Pathway.vue";
import pieGraph from "./PieGraph.vue";
import pipette from "./Pipette.vue";
import plan from "./Plan.vue";
import plus from "./Plus.vue";
import preview from "./Preview.vue";
import project from "./Project.vue";
Expand Down Expand Up @@ -208,7 +208,6 @@ export default {
default: Default,
delete: Delete,
deniedFile,
deploy,
detach,
distance,
doubleChevron,
Expand Down Expand Up @@ -260,6 +259,7 @@ export default {
pathway,
pieGraph,
pipette,
plan,
plus,
preview,
project,
Expand Down