UNPKG

@carbon/react

Version:

React components for the Carbon Design System

21 lines (20 loc) 894 B
/** * Copyright IBM Corp. 2023, 2025 * * This source code is licensed under the Apache-2.0 license found in the * LICENSE file in the root directory of this source tree. */ /** * For "as" props. Creates an "as" property that supports native html tags such as 'span', 'a', 'button' as well as custom functional components * All native props for the supplied html tag/component are inferred as part of the base component props, allowing us to use props like `href` on an 'a' element etc */ export type PolymorphicProps<Element extends React.ElementType, Props> = Props & Omit<React.ComponentProps<Element>, 'as'> & { as?: Element; }; export interface TranslateWithId<MID = string, ARGS = Record<string, unknown>> { /** * Supply a method to translate internal strings with your i18n tool of * choice. */ translateWithId?(messageId: MID, args?: ARGS): string; }