Massive/MassiveFab.tsx

17 lines
353 B
TypeScript
Raw Normal View History

2022-07-08 02:59:19 +00:00
import {AnimatedFAB} from 'react-native-paper';
import React from 'react';
export default function MassiveFab(
props: Partial<React.ComponentProps<typeof AnimatedFAB>>,
) {
return (
<AnimatedFAB
{...props}
extended={false}
label="Add"
icon="add"
2022-07-09 03:27:32 +00:00
style={{position: 'absolute', right: 10, bottom: 60}}
2022-07-08 02:59:19 +00:00
/>
);
}