/* * Copyright (c) Facebook, Inc. and its affiliates. */ import * as React from 'react'; import cn from 'classnames'; import {IconNote} from '../Icon/IconNote'; import {IconGotcha} from '../Icon/IconGotcha'; type CalloutVariants = 'gotcha' | 'note'; interface ExpandableCalloutProps { children: React.ReactNode; type: CalloutVariants; } const variantMap = { note: { title: 'Note', Icon: IconNote, containerClasses: 'bg-green-5 dark:bg-green-60 dark:bg-opacity-20 text-primary dark:text-primary-dark text-lg', textColor: 'text-green-60 dark:text-green-40', overlayGradient: 'linear-gradient(rgba(245, 249, 248, 0), rgba(245, 249, 248, 1)', }, gotcha: { title: 'Pitfall', Icon: IconGotcha, containerClasses: 'bg-yellow-5 dark:bg-yellow-60 dark:bg-opacity-20', textColor: 'text-yellow-50 dark:text-yellow-40', overlayGradient: 'linear-gradient(rgba(249, 247, 243, 0), rgba(249, 247, 243, 1)', }, }; function ExpandableCallout({children, type}: ExpandableCalloutProps) { const contentRef = React.useRef(null); const variant = variantMap[type]; return (

{variant.title}

{children}
); } ExpandableCallout.defaultProps = { type: 'note', }; export default ExpandableCallout;