@risemaxi/sigil
Version:
Icons and Signs for the Rise Design System
15 lines (14 loc) • 1.09 kB
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="M13.62 21c-.085 0-.141-.057-.127-.127V3.127c0-.056.042-.113.113-.113h2.785a4.61 4.61 0 0 1 4.61 4.61v8.766a4.61 4.61 0 0 1-4.61 4.61zm3.422-9.926c-1.004 0-1.824.82-1.824 1.824s.82 1.824 1.824 1.824 1.824-.82 1.824-1.824-.82-1.824-1.824-1.824M5.8 8.4c0-.933.763-1.696 1.696-1.696.934 0 1.697.763 1.697 1.696 0 .934-.763 1.697-1.697 1.697a1.7 1.7 0 0 1-1.696-1.697M11.54 3c.085 0 .142.057.128.127V20.86c0 .07-.057.127-.128.127h-3.93A4.61 4.61 0 0 1 3 16.376V7.61A4.61 4.61 0 0 1 7.611 3zm-1.315 16.544V4.442H7.611c-.849 0-1.64.34-2.235.933a3.09 3.09 0 0 0-.933 2.235v8.766c0 .849.34 1.64.933 2.234a3.09 3.09 0 0 0 2.235.934z"/>
</Svg>);
});
Icon.displayName = 'SwitchFill';
/**
* Remix Icon: Switch Fill
* @see {@link https://remixicon.com/icon/switch-fill Remix Icon Docs}
*/
export const SwitchFill = Icon;