cruk-pattern-library-api
Version:
CRUK Pattern Library API
18 lines (14 loc) • 302 B
JSX
import React from 'react';
import PropTypes from 'prop-types';
function CtaPrimary(props) {
return (
<a className="cr-cta--primary" href={props.href}>
{props.text}
</a>
);
}
CtaPrimary.propTypes = {
href: PropTypes.string,
text: PropTypes.string,
};
export default CtaPrimary;