@risemaxi/sigil
Version:
Icons and Signs for the Rise Design System
18 lines (17 loc) • 2.05 kB
JavaScript
import { memo } from 'react';
import { Svg, G, Mask, Path, Rect } from 'react-native-svg';
const Icon = (props) => {
const { color = 'black', size = 24, ...otherProps } = props;
return (<Svg viewBox="0 0 25 25" fill="none" height={size} width={size} {...otherProps}>
<Mask id="mask0_1009_41601" style={{
maskType: 'alpha',
}} maskUnits="userSpaceOnUse" x="0" y="0" width="25" height="25">
<Rect x="0.390625" y="0.5" width="24" height="24" fill={color}/>
</Mask>
<G mask="url(#mask0_1009_41601)">
<Path d="M11.0906 13.225L10.2406 11.95C10.1573 11.8167 10.0406 11.7083 9.89062 11.625C9.74062 11.5417 9.58229 11.5 9.41563 11.5H2.86562C2.68229 11.0667 2.55729 10.65 2.49063 10.25C2.42396 9.85 2.39062 9.43333 2.39062 9C2.39062 7.43333 2.91562 6.125 3.96563 5.075C5.01562 4.025 6.32396 3.5 7.89062 3.5C8.75729 3.5 9.58229 3.68333 10.3656 4.05C11.149 4.41667 11.824 4.93333 12.3906 5.6C12.9573 4.93333 13.6323 4.41667 14.4156 4.05C15.199 3.68333 16.024 3.5 16.8906 3.5C18.4573 3.5 19.7656 4.025 20.8156 5.075C21.8656 6.125 22.3906 7.43333 22.3906 9C22.3906 9.43333 22.3573 9.85 22.2906 10.25C22.224 10.65 22.099 11.0667 21.9156 11.5H15.9656L14.2406 8.95C14.1406 8.8 14.0115 8.6875 13.8531 8.6125C13.6948 8.5375 13.524 8.5 13.3406 8.5C13.124 8.5 12.9365 8.5625 12.7781 8.6875C12.6198 8.8125 12.5073 8.975 12.4406 9.175L11.0906 13.225ZM12.3906 21.85L10.9406 20.55C9.19063 18.9833 7.75729 17.6417 6.64062 16.525C5.52396 15.4083 4.64896 14.4 4.01562 13.5H8.81563L10.5406 16.05C10.6406 16.2 10.7698 16.3125 10.9281 16.3875C11.0865 16.4625 11.2573 16.5 11.4406 16.5C11.6573 16.5 11.8448 16.4375 12.0031 16.3125C12.1615 16.1875 12.274 16.025 12.3406 15.825L13.6906 11.75L14.5656 13.05C14.649 13.1833 14.7656 13.2917 14.9156 13.375C15.0656 13.4583 15.224 13.5 15.3906 13.5H20.7656C20.1323 14.4 19.2573 15.4083 18.1406 16.525C17.024 17.6417 15.5906 18.9833 13.8406 20.55L12.3906 21.85Z" fill={color}/>
</G>
</Svg>);
};
Icon.displayName = 'Cardiology';
export const Cardiology = memo(Icon);