// 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 SoundProps extends SvgProps { /** Whether or not should show a sound off icon. */ disabled?: boolean; } export const Sound: React.FC> = ({ disabled, ...rest }) => ( {disabled ? ( ) : ( )} ); Sound.displayName = 'Sound'; export default Sound;