Component

Icon:
- IconContribution
- IconHistory

Voting
Add:
- voting (tabs)
- (user)/_layout : penambahan layout voting

# No Issue
This commit is contained in:
2025-07-25 16:58:06 +08:00
parent 51d696128e
commit 20258d1fe5
12 changed files with 164 additions and 21 deletions

View File

@@ -0,0 +1,9 @@
import { FontAwesome5 } from "@expo/vector-icons";
export default function IconHistory({ color }: { color?: string }) {
return (
<>
<FontAwesome5 size={20} name="history" color={color} />
</>
);
}