mirror of
https://github.com/muerwre/vault-frontend.git
synced 2025-04-25 04:46:40 +07:00
10 lines
249 B
TypeScript
10 lines
249 B
TypeScript
import React, { FC, ReactNode } from 'react';
|
|
import styles from './styles.scss';
|
|
|
|
interface IProps {
|
|
children: ReactNode;
|
|
}
|
|
|
|
const DialogTitle: FC<IProps> = ({ children }) => <h2 className={styles.title}>{children}</h2>;
|
|
|
|
export { DialogTitle };
|