import { type PropsOf } from "https://dotland.deno.dev/x/fresh@1.7.3/plugins/twindv1_deps.ts";
Allows to extract the supported properties of a style function.
Here is an example for react
import { HTMLAttributes } from "react";
import { style, PropsOf } from "@twind/core";
const button = style({ ... })
type ButtonProps = PropsOf<typeof button>
export const Button = (props: ButtonProps & HTMLAttributes<HTMLButtonElement>) => {
return <button className={style(props)} {...rest} />
}
definition: T extends Style<infer Variants> ? [key in keyof Variants]: MorphVariant<keyof Variants[key]> : never