install new components
This commit is contained in:
20
ArtisanConnect/components/ui/center/index.web.tsx
Normal file
20
ArtisanConnect/components/ui/center/index.web.tsx
Normal file
@@ -0,0 +1,20 @@
|
||||
import React from 'react';
|
||||
import { centerStyle } from './styles';
|
||||
|
||||
import type { VariantProps } from '@gluestack-ui/nativewind-utils';
|
||||
|
||||
type ICenterProps = React.ComponentPropsWithoutRef<'div'> &
|
||||
VariantProps<typeof centerStyle>;
|
||||
|
||||
const Center = React.forwardRef<HTMLDivElement, ICenterProps>(function Center(
|
||||
{ className, ...props },
|
||||
ref
|
||||
) {
|
||||
return (
|
||||
<div className={centerStyle({ class: className })} {...props} ref={ref} />
|
||||
);
|
||||
});
|
||||
|
||||
Center.displayName = 'Center';
|
||||
|
||||
export { Center };
|
||||
Reference in New Issue
Block a user