You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

13 lines
310 B

9 months ago
  1. import { createStyles } from '@/theme'
  2. export const useStyle = createStyles(({ token, css, cx, prefixCls }, props: any) => {
  3. const prefix = `${prefixCls}-${token?.proPrefix}-x-form-page`
  4. const container = css`
  5. `
  6. return {
  7. container: cx(prefix, props?.className, container),
  8. }
  9. })