Icon: - IconContribution - IconHistory Voting Add: - voting (tabs) - (user)/_layout : penambahan layout voting # No Issue
15 lines
338 B
TypeScript
15 lines
338 B
TypeScript
import { ICON_SIZE_SMALL } from "@/constants/constans-value";
|
|
import { Ionicons } from "@expo/vector-icons";
|
|
|
|
export default function IconContribution({ color }: { color?: string }) {
|
|
return (
|
|
<>
|
|
<Ionicons
|
|
size={ICON_SIZE_SMALL}
|
|
name="extension-puzzle"
|
|
color={color || "white"}
|
|
/>
|
|
</>
|
|
);
|
|
}
|