Icon: - IconContribution - IconHistory Voting Add: - voting (tabs) - (user)/_layout : penambahan layout voting # No Issue
10 lines
216 B
TypeScript
10 lines
216 B
TypeScript
import { FontAwesome5 } from "@expo/vector-icons";
|
|
|
|
export default function IconHistory({ color }: { color?: string }) {
|
|
return (
|
|
<>
|
|
<FontAwesome5 size={20} name="history" color={color} />
|
|
</>
|
|
);
|
|
}
|