onecart-ui
Version:
OneCart UI: Cross-platform design tokens + React & React Native components
10 lines (9 loc) • 986 B
JavaScript
import React from 'react';
import { Svg, Path } from 'react-native-svg';
export const ThumbDownAlt = ({ 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: "M14.727 3.818H6.545C5.791 3.818 5.145 4.273 4.873 4.927L2.127 11.336C2.045 11.545 2.000 11.764 2.000 12.000V13.818C2.000 14.818 2.818 15.636 3.818 15.636H9.555L8.691 19.791L8.664 20.082C8.664 20.455 8.818 20.800 9.064 21.045L10.027 22.000L16.009 16.009C16.345 15.682 16.545 15.227 16.545 14.727V5.636C16.545 4.636 15.727 3.818 14.727 3.818ZM14.727 14.727L10.782 18.673L11.791 13.818H3.818V12.000L6.545 5.636H14.727V14.727ZM18.364 3.818H22.000V14.727H18.364V3.818Z", fill: color })));
};
ThumbDownAlt.displayName = 'ThumbDownAlt';