UNPKG

onecart-ui

Version:

OneCart UI: Cross-platform design tokens + React & React Native components

10 lines (9 loc) 1.06 kB
import React from 'react'; import { Svg, Path } from 'react-native-svg'; export const AddTask = ({ 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: "M20.182 4.891L9.809 15.273L5.955 11.418L7.236 10.136L9.809 12.709L18.900 3.618L20.182 4.891ZM11.091 18.364C7.082 18.364 3.818 15.100 3.818 11.091C3.818 7.082 7.082 3.818 11.091 3.818C12.518 3.818 13.855 4.236 14.982 4.955L16.300 3.636C14.818 2.609 13.027 2.000 11.091 2.000C6.073 2.000 2.000 6.073 2.000 11.091C2.000 16.109 6.073 20.182 11.091 20.182C12.664 20.182 14.145 19.782 15.436 19.073L14.073 17.709C13.164 18.127 12.155 18.364 11.091 18.364ZM17.455 13.818H14.727V15.636H17.455V18.364H19.273V15.636H22.000V13.818H19.273V11.091H17.455V13.818Z", fill: color }))); }; AddTask.displayName = 'AddTask';