15 lines
219 B
TypeScript
15 lines
219 B
TypeScript
interface Props {
|
|
symbol: string;
|
|
content: string;
|
|
}
|
|
|
|
const BoldItalic: React.FC<Props> = ({ content }: Props) => {
|
|
return (
|
|
<strong>
|
|
<em>{content}</em>
|
|
</strong>
|
|
);
|
|
};
|
|
|
|
export default BoldItalic;
|