import {Button} from 'sentry/components/button';
import ButtonBar from 'sentry/components/buttonBar';
import Matrix from 'sentry/components/stories/matrix';
import storyBook from 'sentry/stories/storyBook';
export default storyBook(ButtonBar, story => {
story('Default', () => (
));
story('Active', () => (
));
story('Props', () => (
(
)}
selectedProps={['gap', 'merged']}
propMatrix={{
merged: [true, false],
gap: [0 as const, 2 as const],
}}
/>
));
});