UNPKG

c1-cms

Version:

Contains React components distributed with C1 CMS.

38 lines (30 loc) 594 B
import React, { PropTypes } from 'react'; import styled from 'styled-components'; const Svg = styled.svg` height: 20px; width: 20px; stroke: currentColor; fill: currentColor; button & { height: 18px; width: 18px; display: inline-block; vertical-align: -4px; } .iconlist & { height: 24px; width: 24px; } `; const Icon = ({ id, ...props }) => { return ( <Svg {...props}> <use xlinkHref={'#icon-' + id}/> </Svg> ); }; Icon.propTypes = { id: PropTypes.string.isRequired, className: PropTypes.string }; export default Icon;