UNPKG

@newrelic/gatsby-theme-newrelic

Version:

[![Community Project header](https://github.com/newrelic/opensource-website/raw/master/src/images/categories/Community_Project.png)](https://opensource.newrelic.com/oss-category/#community-project)

28 lines (24 loc) 507 B
import React from 'react'; import PropTypes from 'prop-types'; import { css } from '@emotion/react'; import SVG from './SVG'; const FeatherSVG = ({ children, ...props }) => ( <SVG viewBox="0 0 24 24" {...props} css={css` fill: none; stroke: currentColor; stroke-width: 2; stroke-linecap: round; stroke-linejoin: round; `} > {children} </SVG> ); FeatherSVG.propTypes = { ...SVG.propTypes, children: PropTypes.node, }; export default FeatherSVG;