1
Fork 0
mirror of https://github.com/Steffo99/bluelib.git synced 2024-12-24 12:34:20 +00:00
bluelib/src/components/Underline/index.js

19 lines
416 B
JavaScript
Raw Normal View History

2021-01-25 18:37:58 +00:00
import React from "react";
import useBluelibClassNames from "../../hooks/useBluelibClassNames";
import PropTypes from "prop-types";
export default function Underline({children, className}) {
return (
<u className={useBluelibClassNames("style-underline", className)}>
{children}
</u>
)
}
Underline.propTypes = {
children: PropTypes.node,
className: PropTypes.string,
}