UNPKG

appirio-tech-react-components-test10

Version:

Topcoder UI Kit library of components for our React apps.

21 lines (17 loc) 1.45 kB
import React from 'react' import PropTypes from 'prop-types' const IconSocialDribbble = (props) => { const height = props.height || '48' const width = props.width || '48' return ( <svg xmlns="http://www.w3.org/2000/svg" width={width} height={height} viewBox="0 0 48 48"> <circle fill="#EC4989" cx="24" cy="24" r="22"/> <path fill="#C51E60" d="M24 48C10.766 48 0 37.234 0 24S10.766 0 24 0s24 10.766 24 24-10.766 24-24 24zm20.24-20.715c-.7-.221-6.345-1.904-12.769-.876 2.682 7.368 3.773 13.369 3.983 14.616 4.599-3.11 7.873-8.036 8.786-13.74zM32.008 42.902c-.305-1.799-1.496-8.067-4.374-15.546l-.135.046C15.937 31.43 11.786 39.449 11.417 40.203A20.397 20.397 0 0 0 24 44.531c2.84 0 5.546-.58 8.008-1.63zM8.77 37.738c.465-.795 6.09-10.11 16.663-13.528.267-.086.537-.167.808-.244a68.683 68.683 0 0 0-1.662-3.479c-10.237 3.064-20.171 2.936-21.068 2.918a20.418 20.418 0 0 0 5.26 14.333zM3.933 19.833c.917.012 9.363.048 18.952-2.498-3.397-6.038-7.06-11.115-7.6-11.856C9.55 8.184 5.263 13.471 3.933 19.833zM19.196 4.1c.567.76 4.29 5.83 7.65 12.001 7.289-2.732 10.374-6.88 10.743-7.405A20.415 20.415 0 0 0 24 3.532c-1.654 0-3.262.198-4.804.57zm20.672 6.967c-.432.584-3.867 4.988-11.447 8.083a63.163 63.163 0 0 1 1.802 4.027c6.82-.858 13.598.517 14.274.66a20.402 20.402 0 0 0-4.629-12.77z"/> </svg> ) } IconSocialDribbble.propTypes = { height: PropTypes.number, width: PropTypes.number } export default IconSocialDribbble