UNPKG

@radix-ui/themes

Version:

[![Radix Themes Logo](https://radix-ui.com/social/themes.png)](https://radix-ui.com/themes)

20 lines (15 loc) 789 B
import type React from 'react'; type ComponentPropsAs< C extends React.ElementType<any>, T extends React.ComponentPropsWithoutRef<C>['as'] > = Omit<Extract<React.ComponentPropsWithoutRef<C>, { as: T }>, 'as' | 'asChild'>; // Omits the specified props from the component props. Autocomplete will suggest props // of the component, but won't restrict the omittable props to those that actually exist. type ComponentPropsWithout< T extends React.ElementType, O extends | Omit<string, keyof React.ComponentPropsWithoutRef<T>> | keyof React.ComponentPropsWithoutRef<T> > = Omit<React.ComponentPropsWithoutRef<T>, O & string>; type RemovedProps = 'asChild' | 'defaultChecked' | 'defaultValue' | 'color'; export type { ComponentPropsAs, ComponentPropsWithout, RemovedProps };