onecart-ui
Version:
OneCart UI: Cross-platform design tokens + React & React Native components
10 lines (9 loc) • 989 B
JavaScript
import React from 'react';
import { Svg, Path } from 'react-native-svg';
export const NotificationsNone = ({ size = 'md', color = 'currentColor', style, }) => {
const sizeMap = { xs: 16, sm: 20, md: 24, lg: 32, xl: 40 };
const iconSize = typeof size === 'number' ? size : sizeMap[size];
return (React.createElement(Svg, { width: iconSize, height: iconSize, viewBox: "0 0 24 24", fill: "none", style: style },
React.createElement(Path, { d: "M11.744 20.462C12.872 20.462 13.795 19.538 13.795 18.410H9.692C8.154 21.077 9.077 22.000 10.205 22.000ZM16.359 15.846V9.179C17.897 6.031 16.226 3.395 13.282 2.697V3.538C11.744 2.687 11.056 2.000 10.205 2.000C9.354 2.000 8.667 2.687 8.667 3.538V2.697C7.272 3.395 5.590 6.021 5.590 9.179V15.846L2.000 17.897V17.385H19.949V16.359L17.897 14.308ZM15.846 15.333H7.641V9.179C7.641 6.636 9.190 4.564 11.744 4.564C14.297 4.564 15.846 6.636 15.846 9.179V16.872Z", fill: color })));
};
NotificationsNone.displayName = 'NotificationsNone';