// 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 DeskPhoneProps extends SvgProps { /** Whether or not should show a desk phone icon with strikethrough. */ disabled?: boolean; /** Whether or not should show a desk phone icon dashed. */ poorConnection?: boolean; } export const DeskPhone: React.FC> = ({ disabled = false, poorConnection = false, ...rest }) => ( {poorConnection ? ( disabled ? ( ) : ( ) ) : disabled ? ( ) : ( )} ); DeskPhone.displayName = 'DeskPhone'; export default DeskPhone;