File tree Expand file tree Collapse file tree 1 file changed +6
-5
lines changed
packages/react/src/types/props Expand file tree Collapse file tree 1 file changed +6
-5
lines changed Original file line number Diff line number Diff line change @@ -15,7 +15,8 @@ import type { DevupSelectorProps, DevupThemeSelectorProps } from './selector'
1515import type { DevupUiTextProps } from './text'
1616
1717export interface DevupShortcutsProps
18- extends DevupUiBackgroundProps ,
18+ extends
19+ DevupUiBackgroundProps ,
1920 DevupUiBorderProps ,
2021 DevupUiBoxModelProps ,
2122 DevupUiBoxSizingProps ,
@@ -36,11 +37,11 @@ export type DevupCommonProps = Merge<
3637export interface DevupProps extends DevupCommonProps , DevupSelectorProps { }
3738
3839export interface DevupPropsWithTheme
39- extends DevupProps ,
40- DevupThemeSelectorProps { }
40+ extends DevupProps , DevupThemeSelectorProps { }
4141
42- export interface DevupComponentProps < T extends React . ElementType >
43- extends DevupPropsWithTheme {
42+ export interface DevupComponentProps <
43+ T extends React . ElementType ,
44+ > extends DevupPropsWithTheme {
4445 as ?: T
4546 styleVars ?: Record < string , string | undefined >
4647}
You can’t perform that action at this time.
0 commit comments