Skip to content

Commit 63fbd99

Browse files
committed
refactor: move Tabs
1 parent 0bd2512 commit 63fbd99

File tree

5 files changed

+9
-7
lines changed

5 files changed

+9
-7
lines changed

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@solved-ac/ui-react",
3-
"version": "0.0.1-alpha.32",
3+
"version": "0.0.1-alpha.33",
44
"description": "React component library used by solved.ac",
55
"author": "shiftpsh",
66
"license": "MIT",
Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,10 @@
11
import { ellipsis } from 'polished'
22
import React, { ElementType } from 'react'
33
import styled, { css, useTheme } from 'styled-components'
4-
import { PC, PP, PR } from '../types/PolymorphicElementProps'
5-
import { computeHoverColor, readableColor } from '../utils/color'
6-
import { cssClickable, cssVariables } from '../utils/styles'
7-
import { transparentHoverTemplate } from '../utils/variables'
4+
import { PC, PP, PR } from '../../types/PolymorphicElementProps'
5+
import { computeHoverColor, readableColor } from '../../utils/color'
6+
import { cssClickable, cssVariables } from '../../utils/styles'
7+
import { transparentHoverTemplate } from '../../utils/variables'
88

99
export const tabVariables = cssVariables(
1010
{
Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
import React, { ElementType } from 'react'
22
import styled from 'styled-components'
3-
import { PC, PP, PR } from '../types/PolymorphicElementProps'
3+
import { PC, PP, PR } from '../../types/PolymorphicElementProps'
44

55
interface TabsContainerProps {
66
fullWidth: boolean

src/components/Tab/index.ts

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,3 @@
1+
export * from './Tab'
2+
export * from './Tabs'
3+

src/components/index.ts

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,6 +13,5 @@ export * from './NavBar'
1313
export * from './PaginationItem'
1414
export * from './Space'
1515
export * from './Tab'
16-
export * from './Tabs'
1716
export * from './Typo'
1817

0 commit comments

Comments
 (0)