import { CSSPropertyValThemeFn, cssValue } from '@o/css' export function resolveThemeValues( props: A, ): { [key in keyof A]: Exclude } { return Object.keys(props).reduce((acc, key) => { acc[key] = cssValue(key, props[key]) return acc }, {}) as any }