// // Copyright 2023 DXOS.org // import '@dxos-theme'; import { ArrowClockwise, Bug, FileJs, FileTs, TextB, TextItalic, TextUnderline } from '@phosphor-icons/react'; import React from 'react'; import { Toolbar } from './Toolbar'; import { withTheme } from '../../testing'; import { Toggle } from '../Buttons'; import { Select } from '../Select'; type StorybookToolbarProps = {}; const DefaultStory = (props: StorybookToolbarProps) => { return ( {/* TODO(burdon): Should be fixed width (regardless of selection). */} A B C {/* TODO(burdon): Highlight is cyan. */} {/* TODO(burdon): Show vertical divider by default. */} {/* TODO(burdon): Icon sizes should adapt to density. */} {/* TODO(burdon): Highlight isn't shown. */} Test ); }; export default { title: 'ui/react-ui-core/Toolbar', component: Toolbar, render: DefaultStory, decorators: [withTheme], parameters: { chromatic: { disableSnapshot: false } }, }; export const Default = { args: {}, };