1
0
Fork 0
mirror of https://github.com/muerwre/vault-frontend.git synced 2025-04-25 04:46:40 +07:00
vault-frontend/src/components/dialogs/DialogTitle/index.tsx
2020-08-20 10:30:48 +07:00

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 };