mirror of
https://github.com/Jellify-Music/App.git
synced 2026-05-03 00:59:48 -05:00
13 lines
406 B
TypeScript
13 lines
406 B
TypeScript
import React from "react"
|
|
import MaterialCommunityIcons from "react-native-vector-icons/MaterialCommunityIcons"
|
|
import { Colors } from "react-native/Libraries/NewAppScreen"
|
|
|
|
const iconDimensions = {
|
|
width: 25,
|
|
height: 25
|
|
}
|
|
|
|
export default function Icon({ name }: { name: string }) : React.JSX.Element {
|
|
return <MaterialCommunityIcons color={Colors.Primary} name={name} {...iconDimensions} />
|
|
|
|
} |