Add : - CheckboxGroup - components/_Icon/ Fix: - CheckboxCustom: penambahan fitur untuk checkbox group Feature: Collaboration Add : - ProjectMainSelectedSection Fix : - detail-participant - detail-project-main # No Issue
11 lines
256 B
TypeScript
11 lines
256 B
TypeScript
import { ICON_SIZE_SMALL } from "@/constants/constans-value";
|
|
import { FontAwesome5 } from "@expo/vector-icons";
|
|
|
|
export default function IconEdit() {
|
|
return (
|
|
<>
|
|
<FontAwesome5 name="edit" size={ICON_SIZE_SMALL} color="white" />
|
|
</>
|
|
);
|
|
}
|