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
22 lines
424 B
TypeScript
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}
|
|
/>
|
|
</>
|
|
);
|
|
}
|