From 84d47e79bcb24219a6cbe1cf38c4abdd287ef7f0 Mon Sep 17 00:00:00 2001 From: Stefan Pejcic Date: Fri, 7 Jun 2024 01:29:13 +0200 Subject: [PATCH] Create common-circle-chevron-right.tsx --- .../common-circle-chevron-right.tsx | 24 +++++++++++++++++++ 1 file changed, 24 insertions(+) create mode 100644 documentation/src/refine-theme/common-circle-chevron-right.tsx diff --git a/documentation/src/refine-theme/common-circle-chevron-right.tsx b/documentation/src/refine-theme/common-circle-chevron-right.tsx new file mode 100644 index 00000000..b3e84f6c --- /dev/null +++ b/documentation/src/refine-theme/common-circle-chevron-right.tsx @@ -0,0 +1,24 @@ +import * as React from "react"; +import { SVGProps } from "react"; + +export const CommonCircleChevronRight = (props: SVGProps) => ( + + + + +);