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