UNPKG

@naarni/design-system

Version:

Naarni React Native Design System for EV Fleet Apps

6 lines (5 loc) 280 B
import React from 'react'; import MaterialCommunityIcons from 'react-native-vector-icons/MaterialCommunityIcons'; export const Icon = ({ name, size = 24, color = '#000', style, }) => { return (<MaterialCommunityIcons name={name} size={size} color={color} style={style}/>); };