@risemaxi/sigil
Version:
Icons and Signs for the Rise Design System
15 lines (14 loc) • 831 B
JavaScript
import { memo } from 'react';
import Svg, { Path } from 'react-native-svg';
const Icon = memo((_props) => {
const { color = 'black', size = 24, ...props } = _props;
return (<Svg fill={color} viewBox="0 0 24 24" width={size} height={size} {...props}>
<Path d="M12.001 18.294a7.3 7.3 0 1 1 0-12.588 7.3 7.3 0 1 1 0 12.588m1.702-1.384a5.3 5.3 0 1 0 0-9.82A7.27 7.27 0 0 1 15.6 12c0 1.89-.719 3.614-1.898 4.91m-3.404-9.82a5.3 5.3 0 1 0 0 9.82A7.27 7.27 0 0 1 8.401 12c0-1.89.719-3.614 1.898-4.91m1.702 1.115a5.28 5.28 0 0 0-1.6 3.795c0 1.488.613 2.832 1.6 3.795a5.28 5.28 0 0 0 1.6-3.795 5.28 5.28 0 0 0-1.6-3.795"/>
</Svg>);
});
Icon.displayName = 'MastercardLine';
/**
* Remix Icon: Mastercard Line
* @see {@link https://remixicon.com/icon/mastercard-line Remix Icon Docs}
*/
export const MastercardLine = Icon;