import { createStyles } from '@/theme' export const useStyle = createStyles(({ token, css, cx, prefixCls }, props: any) => { const prefix = `${prefixCls}-${token?.proPrefix}-appPackage-plugin-page` const container = css` .zcss-kfly0u{ background: transparent; } ` return { container: cx(prefix, props?.className, container), } })