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"
style={{position: 'absolute', right: 10, bottom: 50}}
/>
);
}