UNPKG

@radix-ui/themes

Version:

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

11 lines 580 B
import * as React from 'react'; import { strongPropDefs } from './strong.props.js'; import type { ComponentPropsWithout, RemovedProps } from '../helpers/component-props.js'; import type { GetPropDefTypes } from '../props/prop-def.js'; type StrongOwnProps = GetPropDefTypes<typeof strongPropDefs>; interface StrongProps extends ComponentPropsWithout<'strong', RemovedProps>, StrongOwnProps { } declare const Strong: React.ForwardRefExoticComponent<StrongProps & React.RefAttributes<HTMLElement>>; export { Strong }; export type { StrongProps }; //# sourceMappingURL=strong.d.ts.map