Skip to content

Commit

Permalink
[ui] Fix build and storybook for ui-components
Browse files Browse the repository at this point in the history
  • Loading branch information
hellendag committed Jul 11, 2024
1 parent df26b34 commit 58a1791
Show file tree
Hide file tree
Showing 5 changed files with 5 additions and 12 deletions.

This file was deleted.

Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,9 @@ import {MemoryRouter} from 'react-router-dom';

import {createGlobalStyle} from 'styled-components';

import './blueprint.css';
import '@blueprintjs/core/lib/css/blueprint.css';
import '@blueprintjs/select/lib/css/blueprint-select.css';
import '@blueprintjs/popover2/lib/css/blueprint-popover2.css';

const GlobalStyle = createGlobalStyle`
* {
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@ export default {
// without pulling in the entire library.
'components/Box': './src/components/Box.tsx',
'components/Button': './src/components/Button.tsx',
'components/Colors': './src/components/Colors.tsx',
'components/Color': './src/components/Color.tsx',
'components/Icon': './src/components/Icon.tsx',
},
output: {
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ import {Colors} from './Color';
import {BorderSetting, BorderSide, DirectionalSpacing, FlexProperties} from './types';
import {assertUnreachable} from '../util/assertUnreachable';

interface Props {
export interface Props {
background?: string | null;
border?: BorderSide | BorderSetting | null;
flex?: FlexProperties | null;
Expand Down

This file was deleted.

0 comments on commit 58a1791

Please sign in to comment.