Files
hipmi-mobile/components/_Icon/IconEdit.tsx
Bagasbanuna02 25884b64e7 Admin Event
Add:
- admin/event: Tambah halaman detail dan status

Component Admin
Add:
- ShareComponent/Admin/ActionIconPlus

Package:
Install: react-native-qrcode-svg && react-native-svg

### No Issue
2025-08-12 15:29:13 +08:00

22 lines
424 B
TypeScript

import { MainColor } from "@/constants/color-palet";
import { ICON_SIZE_SMALL } from "@/constants/constans-value";
import { FontAwesome5 } from "@expo/vector-icons";
export default function IconEdit({
size,
color,
}: {
size: number;
color: string;
}) {
return (
<>
<FontAwesome5
name="edit"
size={size || ICON_SIZE_SMALL}
color={color || MainColor.white}
/>
</>
);
}