From 6fc63116a0cd3ce4c20e320bdaa851e4a42b3946 Mon Sep 17 00:00:00 2001 From: Matheus Alves Date: Fri, 14 Jun 2024 11:32:46 -0300 Subject: [PATCH] feat: add icon table (#219) --- styleguide/src/Icons/icons-path/Table.tsx | 9 +++++++++ styleguide/src/Icons/icons-path/index.ts | 2 ++ 2 files changed, 11 insertions(+) create mode 100644 styleguide/src/Icons/icons-path/Table.tsx diff --git a/styleguide/src/Icons/icons-path/Table.tsx b/styleguide/src/Icons/icons-path/Table.tsx new file mode 100644 index 00000000..974aefd7 --- /dev/null +++ b/styleguide/src/Icons/icons-path/Table.tsx @@ -0,0 +1,9 @@ +import React from 'react' + +export const Table = () => ( + +) diff --git a/styleguide/src/Icons/icons-path/index.ts b/styleguide/src/Icons/icons-path/index.ts index a1b80c0a..3dc2647d 100644 --- a/styleguide/src/Icons/icons-path/index.ts +++ b/styleguide/src/Icons/icons-path/index.ts @@ -67,6 +67,7 @@ import { Search } from './Search' import { ShoppingCart } from './ShoppingCart' import { SortDown } from './SortDown' import { Sync } from './Sync' +import { Table } from './Table' import { ThinAngleRight } from './ThinAngleRight' import { TimesCircle } from './TimesCircle' import { Trash } from './Trash' @@ -160,6 +161,7 @@ export const icons = { shoppingCart: ShoppingCart, sortDown: SortDown, sync: Sync, + table: Table, thinAngleRight: ThinAngleRight, times: Close, timesCircle: TimesCircle,