import React from 'react'; import { centerStyle } from './styles'; import type { VariantProps } from '@gluestack-ui/nativewind-utils'; type ICenterProps = React.ComponentPropsWithoutRef<'div'> & VariantProps; const Center = React.forwardRef(function Center( { className, ...props }, ref ) { return (
); }); Center.displayName = 'Center'; export { Center };