import React from 'react'; interface IDivider { text?: string } /** Divider */ const Divider = ({ text }: IDivider) => (
); export default Divider;