From dfb000a5b21311176718adbb10df0a09ce975f76 Mon Sep 17 00:00:00 2001 From: Marco Ciampini Date: Fri, 10 Jul 2020 12:13:09 +0200 Subject: [PATCH] GH-54 feat(form): added star icons --- components/icons/index.ts | 1 + components/icons/stars.tsx | 51 ++++++++++++++++++++++++++++++++++++++ 2 files changed, 52 insertions(+) create mode 100644 components/icons/stars.tsx diff --git a/components/icons/index.ts b/components/icons/index.ts index 4580444..86b4998 100644 --- a/components/icons/index.ts +++ b/components/icons/index.ts @@ -1,3 +1,4 @@ export * from './types'; export * from './social'; export * from './logos'; +export * from './stars'; diff --git a/components/icons/stars.tsx b/components/icons/stars.tsx new file mode 100644 index 0000000..d8499a0 --- /dev/null +++ b/components/icons/stars.tsx @@ -0,0 +1,51 @@ +import React from 'react'; + +type Props = { + className?: string; + [key: string]: unknown; +}; + +export const StarFullIcon: React.FC = (props) => ( + +); + +export const StarHalfIcon: React.FC = (props) => ( + +); + +export const StarEmptyIcon: React.FC = (props) => ( + +);