From d1f31a72ad26efe6a88c8d3c927c8e4f8dac9171 Mon Sep 17 00:00:00 2001 From: Jake Laderman Date: Thu, 19 Dec 2024 16:29:31 -0500 Subject: [PATCH] add expand and collapse list icons --- src/components/icons/CollapseListIcon.tsx | 55 +++++++++++++++++++++++ src/components/icons/ExpandListIcon.tsx | 55 +++++++++++++++++++++++ src/icons.ts | 2 + 3 files changed, 112 insertions(+) create mode 100644 src/components/icons/CollapseListIcon.tsx create mode 100644 src/components/icons/ExpandListIcon.tsx diff --git a/src/components/icons/CollapseListIcon.tsx b/src/components/icons/CollapseListIcon.tsx new file mode 100644 index 00000000..a94d8540 --- /dev/null +++ b/src/components/icons/CollapseListIcon.tsx @@ -0,0 +1,55 @@ +import createIcon from './createIcon' + +export default createIcon(({ size, color }) => ( + + + + + + + + + +)) diff --git a/src/components/icons/ExpandListIcon.tsx b/src/components/icons/ExpandListIcon.tsx new file mode 100644 index 00000000..54dcebd5 --- /dev/null +++ b/src/components/icons/ExpandListIcon.tsx @@ -0,0 +1,55 @@ +import createIcon from './createIcon' + +export default createIcon(({ size, color }) => ( + + + + + + + + + +)) diff --git a/src/icons.ts b/src/icons.ts index 647a3611..23a3c443 100644 --- a/src/icons.ts +++ b/src/icons.ts @@ -46,6 +46,7 @@ export { default as CloseRoundedIcon } from './components/icons/CloseRoundedIcon export { default as CloudIcon } from './components/icons/CloudIcon' export { default as ClusterIcon } from './components/icons/ClusterIcon' export { default as CollapseIcon } from './components/icons/CollapseIcon' +export { default as CollapseListIcon } from './components/icons/CollapseListIcon' export { default as CommandIcon } from './components/icons/CommandIcon' export { default as CompassIcon } from './components/icons/CompassIcon' export { default as CompatibilityIcon } from './components/icons/CompatibilityIcon' @@ -79,6 +80,7 @@ export { default as EmojiHoverIcon } from './components/icons/EmojiHoverIcon' export { default as EmojiIcon } from './components/icons/EmojiIcon' export { default as ErrorIcon } from './components/icons/ErrorIcon' export { default as ExpandIcon } from './components/icons/ExpandIcon' +export { default as ExpandListIcon } from './components/icons/ExpandListIcon' export { default as EyeClosedIcon } from './components/icons/EyeClosedIcon' export { default as EyeIcon } from './components/icons/EyeIcon' export { default as FastForwardIcon } from './components/icons/FastForwardIcon'