Skip to content

Commit

Permalink
fix css import missing in LabeledSelect (#1195)
Browse files Browse the repository at this point in the history
  • Loading branch information
mayank99 authored Apr 10, 2023
1 parent 131fa2e commit 40c551d
Show file tree
Hide file tree
Showing 3 changed files with 9 additions and 3 deletions.
5 changes: 5 additions & 0 deletions .changeset/lovely-pianos-fry.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
---
'@itwin/itwinui-react': patch
---

Fixed an issue with missing css in LabeledSelect.
Original file line number Diff line number Diff line change
Expand Up @@ -5,10 +5,10 @@
import React from 'react';

import { Select } from '../Select';
import { SelectProps } from '../Select/Select';
import type { SelectProps } from '../Select/Select';
import { StatusIconMap, useTheme, InputContainer } from '../utils';
import { LabeledInputProps } from '../LabeledInput';
import '@itwin/itwinui-css/css/select.css';
import type { LabeledInputProps } from '../LabeledInput';
import '@itwin/itwinui-css/css/input.css';

export type LabeledSelectProps<T> = {
/**
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,7 @@
*--------------------------------------------------------------------------------------------*/
import React from 'react';
import cx from 'classnames';
import '@itwin/itwinui-css/css/utils.css';

export type InputContainerProps<T extends React.ElementType = 'div'> = {
as?: T;
Expand Down

0 comments on commit 40c551d

Please sign in to comment.