// Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved. // SPDX-License-Identifier: Apache-2.0 import React, { forwardRef, Ref, LabelHTMLAttributes } from 'react'; import { BaseProps } from '../Base'; import { StyledLabel } from './Styled'; export interface LabelProps extends Omit, 'css'>, BaseProps {} export const Label = forwardRef( (props: LabelProps, ref: Ref) => { const { className, tag, ...rest } = props; return ( {props.children} ); } ); export default Label;