mirror of
https://github.com/usememos/memos.git
synced 2025-10-27 14:56:30 +08:00
10 lines
172 B
TypeScript
10 lines
172 B
TypeScript
interface Props {
|
|
symbol: string;
|
|
content: string;
|
|
}
|
|
|
|
const Italic: React.FC<Props> = ({ content }: Props) => {
|
|
return <em>{content}</em>;
|
|
};
|
|
|
|
export default Italic;
|