blowfish/src/renderer/components/Label.jsx

16 lines
300 B
React
Raw Normal View History

2019-09-08 21:47:57 +02:00
import React from 'react'
import PropTypes from 'prop-types'
import styles from './Label.module.css'
const Label = ({ children, ...props }) => (
<span className={styles.label} {...props}>
{children}
</span>
)
Label.propTypes = {
children: PropTypes.any.isRequired
}
export default Label