mirror of
https://github.com/overleaf/overleaf.git
synced 2024-11-21 20:47:08 -05:00
4a8b79080b
* [storybook] Update Storybook to version 8.3.5 * [storybook] Run storybook with `--no-open`. Fixes xdg-utils issue * [storybook] Create decorator for BS3/BS5 * [storybook] Add `bsVersionDecorator` to stories * [storybook] Fix bugs in stories * [storybook] Fixup `useMeta` type. Use `DeepPartial` * [storybook] Fix types GitOrigin-RevId: 48c0f0fefb1ab2d4863ab59051b900b1908a613c
39 lines
851 B
TypeScript
39 lines
851 B
TypeScript
import { ScopeDecorator } from './decorators/scope'
|
|
import { FeedbackBadge } from '@/shared/components/feedback-badge'
|
|
import { bsVersionDecorator } from '../../.storybook/utils/with-bootstrap-switcher'
|
|
|
|
export const WithDefaultText = () => {
|
|
return (
|
|
<FeedbackBadge
|
|
url="https://example.com"
|
|
id="storybook-feedback-with-text"
|
|
/>
|
|
)
|
|
}
|
|
|
|
export const WithCustomText = () => {
|
|
const FeedbackContent = () => (
|
|
<>
|
|
This is an example.
|
|
<br />
|
|
Click to find out more
|
|
</>
|
|
)
|
|
|
|
return (
|
|
<FeedbackBadge
|
|
url="https://example.com"
|
|
id="storybook-feedback-with-text"
|
|
text={<FeedbackContent />}
|
|
/>
|
|
)
|
|
}
|
|
|
|
export default {
|
|
title: 'Shared / Components / Feedback Badge',
|
|
component: FeedbackBadge,
|
|
decorators: [ScopeDecorator],
|
|
argTypes: {
|
|
...bsVersionDecorator.argTypes,
|
|
},
|
|
}
|