From bd3fe42669a611ed730c2ea6833c1077acd5a650 Mon Sep 17 00:00:00 2001 From: Vyshnavi Dasari Date: Wed, 19 Dec 2018 15:17:16 +0530 Subject: [PATCH 1/3] Exported two icons --- .../svg/ProcessedIcons/icons-table-add.tsx | 1 + .../svg/ProcessedIcons/icons-table-delete.tsx | 1 + .../teams/components/Icon/svg/icons/index.ts | 4 ++++ .../components/Icon/svg/icons/tableAdd.tsx | 24 +++++++++++++++++++ .../components/Icon/svg/icons/tableDelete.tsx | 24 +++++++++++++++++++ 5 files changed, 54 insertions(+) create mode 100644 src/themes/teams/components/Icon/svg/icons/tableAdd.tsx create mode 100644 src/themes/teams/components/Icon/svg/icons/tableDelete.tsx diff --git a/src/themes/teams/components/Icon/svg/ProcessedIcons/icons-table-add.tsx b/src/themes/teams/components/Icon/svg/ProcessedIcons/icons-table-add.tsx index 88fa0200a4..aebb02aa16 100644 --- a/src/themes/teams/components/Icon/svg/ProcessedIcons/icons-table-add.tsx +++ b/src/themes/teams/components/Icon/svg/ProcessedIcons/icons-table-add.tsx @@ -21,4 +21,5 @@ export default { ), styles: {}, + exportedAs: 'table-add', } as TeamsProcessedSvgIconSpec diff --git a/src/themes/teams/components/Icon/svg/ProcessedIcons/icons-table-delete.tsx b/src/themes/teams/components/Icon/svg/ProcessedIcons/icons-table-delete.tsx index a2beb09c62..0dce4870d4 100644 --- a/src/themes/teams/components/Icon/svg/ProcessedIcons/icons-table-delete.tsx +++ b/src/themes/teams/components/Icon/svg/ProcessedIcons/icons-table-delete.tsx @@ -21,4 +21,5 @@ export default { ), styles: {}, + exportedAs: 'table-delete', } as TeamsProcessedSvgIconSpec diff --git a/src/themes/teams/components/Icon/svg/icons/index.ts b/src/themes/teams/components/Icon/svg/icons/index.ts index f50c2fe168..fee083ef38 100644 --- a/src/themes/teams/components/Icon/svg/icons/index.ts +++ b/src/themes/teams/components/Icon/svg/icons/index.ts @@ -34,6 +34,8 @@ import redbang from './redbang' import reply from './reply' import retry from './retry' import send from './send' +import tableAdd from './tableAdd' +import tableDelete from './tableDelete' import teamCreate from './teamCreate' import teams from './teams' import translation from './translation' @@ -74,6 +76,8 @@ export default { reply, retry, send, + 'table-add': tableAdd, + 'table-delete': tableDelete, teams, translation, 'trash-can': trashCan, diff --git a/src/themes/teams/components/Icon/svg/icons/tableAdd.tsx b/src/themes/teams/components/Icon/svg/icons/tableAdd.tsx new file mode 100644 index 0000000000..88fa0200a4 --- /dev/null +++ b/src/themes/teams/components/Icon/svg/icons/tableAdd.tsx @@ -0,0 +1,24 @@ +import * as React from 'react' +import { TeamsProcessedSvgIconSpec } from '../types' + +export default { + icon: ({ classes }) => ( + + + + + + + + + + + ), + styles: {}, +} as TeamsProcessedSvgIconSpec diff --git a/src/themes/teams/components/Icon/svg/icons/tableDelete.tsx b/src/themes/teams/components/Icon/svg/icons/tableDelete.tsx new file mode 100644 index 0000000000..a2beb09c62 --- /dev/null +++ b/src/themes/teams/components/Icon/svg/icons/tableDelete.tsx @@ -0,0 +1,24 @@ +import * as React from 'react' +import { TeamsProcessedSvgIconSpec } from '../types' + +export default { + icon: ({ classes }) => ( + + + + + + + + + + + ), + styles: {}, +} as TeamsProcessedSvgIconSpec From c3bd92b6390fbf2315de73bc6f3af083667c3c36 Mon Sep 17 00:00:00 2001 From: Vyshnavi Dasari Date: Wed, 19 Dec 2018 15:38:28 +0530 Subject: [PATCH 2/3] Made change in change.log --- CHANGELOG.md | 2 ++ 1 file changed, 2 insertions(+) diff --git a/CHANGELOG.md b/CHANGELOG.md index af197727ac..d7633fdc5e 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -61,6 +61,8 @@ This project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.htm - Export `canvas-add-page` SVG icon @priyankar205 ([#601](https://github.com/stardust-ui/react/pull/601)) - Add `sizeModifier` variable (with `x` and `xx` values) to `Icon`'s Teams theme styles @priyankar205 ([#601](https://github.com/stardust-ui/react/pull/601)) - Add `offset` prop to `Popup` to extend set of popup positioning options @kuzhelov ([#606](https://github.com/stardust-ui/react/pull/606)) +- Export `table-add` SVG icon @VyshnaviDasari ([#643](https://github.com/stardust-ui/react/pull/643)) +- Export `table-delete` SVG icon @VyshnaviDasari ([#643](https://github.com/stardust-ui/react/pull/643)) ### Documentation - Add `prettier` support throughout the docs @levithomason ([#568](https://github.com/stardust-ui/react/pull/568)) From cbb0b45ae643d3d3ad449e939a379da107dae545 Mon Sep 17 00:00:00 2001 From: Vyshnavi Dasari Date: Wed, 19 Dec 2018 17:00:42 +0530 Subject: [PATCH 3/3] Made changes in change.log --- CHANGELOG.md | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index d7633fdc5e..56c8bdd3b6 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -61,8 +61,7 @@ This project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.htm - Export `canvas-add-page` SVG icon @priyankar205 ([#601](https://github.com/stardust-ui/react/pull/601)) - Add `sizeModifier` variable (with `x` and `xx` values) to `Icon`'s Teams theme styles @priyankar205 ([#601](https://github.com/stardust-ui/react/pull/601)) - Add `offset` prop to `Popup` to extend set of popup positioning options @kuzhelov ([#606](https://github.com/stardust-ui/react/pull/606)) -- Export `table-add` SVG icon @VyshnaviDasari ([#643](https://github.com/stardust-ui/react/pull/643)) -- Export `table-delete` SVG icon @VyshnaviDasari ([#643](https://github.com/stardust-ui/react/pull/643)) +- Export `table-add` and `table-delete` SVG icon @VyshnaviDasari ([#643](https://github.com/stardust-ui/react/pull/643)) ### Documentation - Add `prettier` support throughout the docs @levithomason ([#568](https://github.com/stardust-ui/react/pull/568))