mirror of
https://github.com/urosran/cally.git
synced 2025-07-10 15:17:17 +00:00
28 lines
610 B
TypeScript
28 lines
610 B
TypeScript
import { Text, StyleSheet } from "react-native";
|
|
import React from "react";
|
|
import CloseXIcon from "@/assets/svgs/CloseXIcon";
|
|
import { View } from "react-native-ui-lib";
|
|
|
|
const RemoveAssigneeBtn = () => {
|
|
return (
|
|
<View style={styles.removeBtn} center>
|
|
<CloseXIcon width={9} height={9} strokeWidth={2} />
|
|
</View>
|
|
);
|
|
};
|
|
|
|
const styles = StyleSheet.create({
|
|
removeBtn: {
|
|
aspectRatio: 1,
|
|
width: 20,
|
|
backgroundColor: "#f0efef",
|
|
right: 0,
|
|
borderRadius: 50,
|
|
position: "absolute",
|
|
borderWidth: 1,
|
|
borderColor: "#7f7f7f",
|
|
},
|
|
});
|
|
|
|
export default RemoveAssigneeBtn;
|