mirror of
https://github.com/urosran/cally.git
synced 2025-11-27 08:54:54 +00:00
24 lines
744 B
TypeScript
24 lines
744 B
TypeScript
import React from "react";
|
|
import { ImageBackground, StyleSheet } from "react-native";
|
|
import { View } from "react-native-ui-lib";
|
|
import RemoveAssigneeBtn from "./RemoveAssigneeBtn";
|
|
|
|
const AssigneesDisplay = () => {
|
|
return (
|
|
<View row marginH-13 marginT-13 gap-20>
|
|
<ImageBackground
|
|
source={require("../../assets/images/child-picture.png")}
|
|
style={{ aspectRatio: 1, width: 58.08, overflow: "hidden" }}
|
|
children={<RemoveAssigneeBtn />}
|
|
/>
|
|
<ImageBackground
|
|
source={require("../../assets/images/child1-picture.png")}
|
|
style={{ aspectRatio: 1, width: 58.08, overflow: "hidden" }}
|
|
children={<RemoveAssigneeBtn />}
|
|
/>
|
|
</View>
|
|
);
|
|
};
|
|
|
|
export default AssigneesDisplay;
|