2026-02-23 11:22:35 +00:00

16 lines
2.4 KiB
JavaScript

import React from 'react';
const ExtraIcon = (props) => (
<svg className={props.className} idth="20" height="20" viewBox="0 0 20 20" xmlns="http://www.w3.org/2000/svg">
<path fillRule="evenodd" clipRule="evenodd" d="M6.24594 7.93044C4.55261 9.76294 4.58844 12.6679 6.35344 14.4671C7.21511 15.3479 8.36011 15.8338 9.58011 15.8346H9.58428C10.8068 15.8346 11.9559 15.3488 12.8218 14.4671C14.6184 12.6354 14.6151 9.65627 12.8143 7.82711L10.3259 5.28461C10.0743 7.35294 9.29844 9.16794 7.91678 9.16794C7.49344 9.16794 6.80344 8.97961 6.24594 7.93044ZM9.58428 17.5013H9.57845C7.90678 17.4996 6.33845 16.8371 5.16261 15.6329C2.73428 13.1579 2.73095 9.13043 5.15511 6.6596L5.97428 5.83127C6.18595 5.6196 6.49345 5.53793 6.78428 5.61377C7.07345 5.6921 7.29845 5.9196 7.37345 6.2096C7.56511 6.95043 7.79345 7.3146 7.91928 7.45293C8.21511 7.14127 8.75011 5.8821 8.75011 3.75127C8.75011 3.62877 8.75011 3.51293 8.74345 3.3971C8.72761 3.15127 8.82178 2.91043 9.00011 2.74043C9.33095 2.42627 9.86095 2.42627 10.1784 2.75293L14.0034 6.66043C16.4368 9.13043 16.4409 13.1579 14.0118 15.6338C12.8293 16.8388 11.2576 17.5013 9.58428 17.5013Z" />
<mask id="extra" mask-type="alpha" maskUnits="userSpaceOnUse" x="3" y="2" width="13" height="16">
<path fillRule="evenodd" clipRule="evenodd" d="M6.24594 7.93044C4.55261 9.76294 4.58844 12.6679 6.35344 14.4671C7.21511 15.3479 8.36011 15.8338 9.58011 15.8346H9.58428C10.8068 15.8346 11.9559 15.3488 12.8218 14.4671C14.6184 12.6354 14.6151 9.65627 12.8143 7.82711L10.3259 5.28461C10.0743 7.35294 9.29844 9.16794 7.91678 9.16794C7.49344 9.16794 6.80344 8.97961 6.24594 7.93044ZM9.58428 17.5013H9.57845C7.90678 17.4996 6.33845 16.8371 5.16261 15.6329C2.73428 13.1579 2.73095 9.13043 5.15511 6.6596L5.97428 5.83127C6.18595 5.6196 6.49345 5.53793 6.78428 5.61377C7.07345 5.6921 7.29845 5.9196 7.37345 6.2096C7.56511 6.95043 7.79345 7.3146 7.91928 7.45293C8.21511 7.14127 8.75011 5.8821 8.75011 3.75127C8.75011 3.62877 8.75011 3.51293 8.74345 3.3971C8.72761 3.15127 8.82178 2.91043 9.00011 2.74043C9.33095 2.42627 9.86095 2.42627 10.1784 2.75293L14.0034 6.66043C16.4368 9.13043 16.4409 13.1579 14.0118 15.6338C12.8293 16.8388 11.2576 17.5013 9.58428 17.5013Z" />
</mask>
<g mask="url(#extra)">
<rect width="20" height="20" />
</g>
</svg>
);
export default ExtraIcon;