import * as React from 'react'; import { useStyles } from '../shared/styleUtils'; import { ForwardRefPrimitive, Primitive, BaseViewProps, ViewProps, } from '../types'; const ViewPrimitive: Primitive = ( { as = 'div', children, testId, ariaLabel, isDisabled, style, inert, ...rest }, ref ) => { const { propStyles, nonStyleProps } = useStyles(rest, style); return React.createElement( as, { 'aria-label': ariaLabel, 'data-testid': testId, disabled: isDisabled, ref, inert: inert ? '' : null, style: propStyles, ...nonStyleProps, }, children ); }; /** * [📖 Docs](https://ui.docs.amplify.aws/react/components/view) */ export const View: ForwardRefPrimitive = React.forwardRef(ViewPrimitive); View.displayName = 'View';