// Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved. // SPDX-License-Identifier: Apache-2.0 import React from 'react'; import Svg, { SvgProps } from '../Svg'; import { StyledCircle } from './Styled'; export interface HandRaiseProps extends SvgProps { /** Whether or not should show a raised icon. */ isRaised?: boolean; } export const HandRaise: React.FC> = ({ isRaised, ...rest }) => ( {isRaised && } ); HandRaise.displayName = 'HandRaise'; export default HandRaise;