Massive/AppFab.tsx

18 lines
341 B
TypeScript
Raw Normal View History

2023-11-14 01:34:10 +00:00
import { ComponentProps } from "react";
import { FAB } from "react-native-paper";
2022-07-08 02:59:19 +00:00
2022-12-29 00:57:19 +00:00
export default function AppFab(props: Partial<ComponentProps<typeof FAB>>) {
2022-07-08 02:59:19 +00:00
return (
2022-07-15 06:06:33 +00:00
<FAB
2023-10-19 05:28:56 +00:00
icon="plus"
testID="add"
2022-07-15 06:06:33 +00:00
style={{
position: "absolute",
right: 20,
bottom: 20,
2022-07-15 06:06:33 +00:00
}}
2022-09-26 01:38:25 +00:00
{...props}
2022-07-08 02:59:19 +00:00
/>
);
2022-07-08 02:59:19 +00:00
}