mirror of
https://github.com/urosran/cally.git
synced 2025-07-17 02:25:10 +00:00
new fonts, ui tweaks
This commit is contained in:
23
components/shared/AssigneesDisplay.tsx
Normal file
23
components/shared/AssigneesDisplay.tsx
Normal file
@ -0,0 +1,23 @@
|
||||
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;
|
Reference in New Issue
Block a user