From 1e38837f52cb093a64283fe302c6ec00065ee58f Mon Sep 17 00:00:00 2001 From: Jackson Harper Date: Tue, 28 Feb 2023 18:22:28 +0800 Subject: [PATCH] Add reader images --- .../images/LineHeightDecreaseIcon.tsx | 60 +++++++++++++++++++ .../images/LineHeightIncreaseIconProps.tsx | 60 +++++++++++++++++++ 2 files changed, 120 insertions(+) create mode 100644 packages/web/components/elements/images/LineHeightDecreaseIcon.tsx create mode 100644 packages/web/components/elements/images/LineHeightIncreaseIconProps.tsx diff --git a/packages/web/components/elements/images/LineHeightDecreaseIcon.tsx b/packages/web/components/elements/images/LineHeightDecreaseIcon.tsx new file mode 100644 index 000000000..ee13ad7f6 --- /dev/null +++ b/packages/web/components/elements/images/LineHeightDecreaseIcon.tsx @@ -0,0 +1,60 @@ +type LineHeightDecreaseIconProps = { + strokeColor: string +} + +export function LineHeightDecreaseIcon( + props: LineHeightDecreaseIconProps +): JSX.Element { + return ( + + + + + + + + + ) +} diff --git a/packages/web/components/elements/images/LineHeightIncreaseIconProps.tsx b/packages/web/components/elements/images/LineHeightIncreaseIconProps.tsx new file mode 100644 index 000000000..3cd42ca24 --- /dev/null +++ b/packages/web/components/elements/images/LineHeightIncreaseIconProps.tsx @@ -0,0 +1,60 @@ +type LineHeightIncreaseIconProps = { + strokeColor: string +} + +export function LineHeightIncreaseIcon( + props: LineHeightIncreaseIconProps +): JSX.Element { + return ( + + + + + + + + + ) +}