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