tiefen_space_app/components/MyDivider/index.jsx

12 lines
281 B
React
Raw Normal View History

2023-12-29 00:27:44 +08:00
import { View } from "react-native";
import { useTailwind } from "tailwind-rn";
2024-04-18 22:58:59 +08:00
export default function MyDivider({ style }) {
2023-12-29 00:27:44 +08:00
const tailwind = useTailwind();
return (
2024-04-18 22:58:59 +08:00
<View
style={[tailwind("h-[3px] rounded-full w-full bg-[#FFFFFF26]"), style]}
></View>
2023-12-29 00:27:44 +08:00
);
}