// Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved. // SPDX-License-Identifier: Apache-2.0 import React, { FC } from 'react'; import Svg, { SvgProps } from '../Svg'; export type CautionVariant = 'default' | 'fill-warning' | 'fill-error'; import { StyledCaution } from './styled'; export interface CautionProps extends SvgProps { /** toggle the range of visual variants */ variant?: CautionVariant; } export const Caution: FC> = (props) => ( ); Caution.displayName = 'Caution'; export default Caution;