import React from 'react' import { Meta } from '@storybook/react' import { Callout, Props as CalloutProps } from './Callout' import { Text } from '../Text/Text' import { Box } from '../Box/Box' import { Button } from '../Button/Button' export default { title: 'Components/Callout', component: Callout, } as Meta const Content: React.FC<{ kind: CalloutProps['kind'] icon?: CalloutProps['icon'] }> = ({ kind, icon }) => { return ( Are there sourcemaps tied to your javascript code? If yes, you can upload them to Highlight in CI/CD to get enhanced stack traces. ) } export const Basic = () => ( <> )