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.

14 lines
357 B

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