Skip to content

Commit

Permalink
feat(packages): reexport use form hook
Browse files Browse the repository at this point in the history
  • Loading branch information
kirill-ivanovvv committed Dec 28, 2024
1 parent 69e9857 commit f03e927
Show file tree
Hide file tree
Showing 2 changed files with 10 additions and 9 deletions.
18 changes: 9 additions & 9 deletions packages/payment-widget/src/ui/button/button.component.tsx
Original file line number Diff line number Diff line change
@@ -1,14 +1,14 @@
import type { ButtonProps } from '@atls-ui-parts/button'
import type { FC } from 'react'
import type { ButtonProps } from '@atls-ui-parts/button'
import type { FC } from 'react'

import styled from '@emotion/styled'
import { useHover } from 'react-laag'
import React from 'react'
import styled from '@emotion/styled'
import { useHover } from 'react-laag'
import React from 'react'

import { appearanceStyles } from './button.styles.js'
import { contentStyles } from './button.styles.js'
import { baseStyles } from './button.styles.js'
import { shapeStyles } from './button.styles.js'
import { appearanceStyles } from './button.styles.js'
import { contentStyles } from './button.styles.js'
import { baseStyles } from './button.styles.js'
import { shapeStyles } from './button.styles.js'

const ButtonElement = (styled.default ?? styled)('button')<ButtonProps>(
// @ts-expect-error
Expand Down
1 change: 1 addition & 0 deletions packages/payment-widget/src/ui/index.ts
Original file line number Diff line number Diff line change
@@ -1,4 +1,5 @@
export * from './widget.component.js'
export * from './wrapper/index.js'
export * from './form/index.js'
export { Input } from './input/input.component.js'
export { MemoizedInput } from './input/input.component.js'

0 comments on commit f03e927

Please sign in to comment.