@primer/components
Version:
Primer react components
20 lines (18 loc) • 452 B
JavaScript
import React from 'react';
import styled from 'styled-components';
import sx from './sx';
function Octicon({
icon: IconComponent,
...rest
}) {
return /*#__PURE__*/React.createElement(IconComponent, rest);
}
Octicon.displayName = "Octicon";
const StyledOcticon = styled(Octicon).withConfig({
displayName: "StyledOcticon",
componentId: "sc-uhnt7w-0"
})(["", ""], sx);
StyledOcticon.defaultProps = {
size: 16
};
export default StyledOcticon;