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'