From e5472a9015e09ed6588146cf40a90f71ac16066b Mon Sep 17 00:00:00 2001 From: Lucas Arcoverde Date: Tue, 9 Jul 2024 14:13:43 -0300 Subject: [PATCH] feat(icon): add IconCounterClockwise --- .../shoreline/src/icons/counter-clockwise.tsx | 49 +++++++++++++++++++ packages/shoreline/src/icons/index.ts | 1 + 2 files changed, 50 insertions(+) create mode 100644 packages/shoreline/src/icons/counter-clockwise.tsx diff --git a/packages/shoreline/src/icons/counter-clockwise.tsx b/packages/shoreline/src/icons/counter-clockwise.tsx new file mode 100644 index 0000000000..2f69d9a35b --- /dev/null +++ b/packages/shoreline/src/icons/counter-clockwise.tsx @@ -0,0 +1,49 @@ +import { forwardRef, type ComponentPropsWithoutRef } from 'react' + +export const IconCounterClockwise = forwardRef< + SVGSVGElement, + ComponentPropsWithoutRef<'svg'> +>(function IconCounterClockwise(props, ref) { + return ( + + + + + + + ) +}) diff --git a/packages/shoreline/src/icons/index.ts b/packages/shoreline/src/icons/index.ts index d280fefb6f..4510bc9e4b 100644 --- a/packages/shoreline/src/icons/index.ts +++ b/packages/shoreline/src/icons/index.ts @@ -140,3 +140,4 @@ export { IconXCircleFill } from './x-circle-fill' export { IconXCircle } from './x-circle' export { IconXSmall } from './x-small' export { IconX } from './x' +export { IconCounterClockwise } from './counter-clockwise'