we-insights-react-native
Version:
[we-insights] is a powerful utility library designed to streamline data collection processes for WeApp employees. It simplifies the process of gathering, storing, and managing data within WeApp projects, making it an invaluable tool for enhancing efficien
36 lines (34 loc) • 887 B
text/typescript
import NotNiceSVG from './images/notNice.svg'
import OkaySVG from './images/okay.svg'
import GoodSVG from './images/good.svg'
import SuperSVG from './images/super.svg'
import NotNiceSelectedSVG from './images/notNiceSelected.svg'
import OkaySelectedSVG from './images/okaySelected.svg'
import GoodSelectedSVG from './images/goodSelected.svg'
import SuperSelectedSVG from './images/superSelected.svg'
export type IconItem = {
Icon: React.ElementType;
IconSelected: React.ElementType;
}
export const ratingIcons: IconItem[] = [
{
Icon: NotNiceSVG,
IconSelected: NotNiceSelectedSVG
},
{
Icon: OkaySVG,
IconSelected: OkaySelectedSVG
},
{
Icon: GoodSVG,
IconSelected: GoodSelectedSVG
},
{
Icon: SuperSVG,
IconSelected: SuperSelectedSVG
},
{
Icon: SuperSVG,
IconSelected: SuperSelectedSVG
}
]