@yozora/react-strong
Version:
render markdown strong node in react
25 lines (24 loc) • 544 B
TypeScript
import React from 'react';
import './style.styl';
export interface IStrongProps {
/**
* Strong contents.
*/
children?: React.ReactNode;
/**
* Root css class of the component.
*/
className?: string;
/**
* Root css style.
*/
style?: React.CSSProperties;
}
/**
* Render yozora `strong`.
*
* @see https://www.npmjs.com/package/@yozora/ast#strong
* @see https://www.npmjs.com/package/@yozora/tokenizer-emphasis
*/
export declare const Strong: React.FC<IStrongProps>;
export default Strong;