// 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'; interface ListHandRaiseProps extends SvgProps {} export const ListHandRaise: React.FC> = ({ ...rest }) => ( ); ListHandRaise.displayName = 'ListHandRaise'; export default ListHandRaise;