1
Fork 0
mirror of https://github.com/Steffo99/bluelib.git synced 2024-12-23 12:04:22 +00:00
bluelib/src/components/Anchor/index.js

20 lines
454 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 Anchor({children, className, href}) {
return (
<a className={useBluelibClassNames(`element-anchor`, className)} href={href}>
2021-01-25 18:37:58 +00:00
{children}
</a>
)
}
Anchor.propTypes = {
children: PropTypes.node,
className: PropTypes.string,
href: PropTypes.string
2021-01-25 18:37:58 +00:00
}