14 lines
407 B
TypeScript
14 lines
407 B
TypeScript
|
|
import * as _chakra_ui_system from '@chakra-ui/system';
|
||
|
|
import { HTMLChakraProps, ThemingProps } from '@chakra-ui/system';
|
||
|
|
|
||
|
|
interface CodeProps extends HTMLChakraProps<"code">, ThemingProps<"Code"> {
|
||
|
|
}
|
||
|
|
/**
|
||
|
|
* React component to render inline code snippets.
|
||
|
|
*
|
||
|
|
* @see Docs https://chakra-ui.com/code
|
||
|
|
*/
|
||
|
|
declare const Code: _chakra_ui_system.ComponentWithAs<"code", CodeProps>;
|
||
|
|
|
||
|
|
export { Code, CodeProps };
|