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