forked from cemaden-educacao/WPD-MobileApp
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
27 lines
555 B
27 lines
555 B
import React from "react";
|
|
import { View } from "react-native";
|
|
import { MaterialCommunityIcons } from "@expo/vector-icons";
|
|
|
|
function Icon({
|
|
name,
|
|
size = 40,
|
|
backgroundColor = "#000",
|
|
iconColor = "#fff",
|
|
}) {
|
|
return (
|
|
<View
|
|
style={{
|
|
width: size,
|
|
height: size,
|
|
borderRadius: size / 2,
|
|
backgroundColor,
|
|
justifyContent: "center",
|
|
alignItems: "center",
|
|
}}
|
|
>
|
|
<MaterialCommunityIcons name={name} color={iconColor} size={size * 0.5} />
|
|
</View>
|
|
);
|
|
}
|
|
|
|
export default Icon;
|