UNPKG

onecart-ui

Version:

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

10 lines (9 loc) 1.16 kB
import React from 'react'; import { Svg, Path } from 'react-native-svg'; export const PhonelinkLock = ({ 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: "M18.364 2.000H9.273C8.273 2.000 7.455 2.818 7.455 3.818V6.545H9.273V4.727H18.364V19.273H9.273V17.455H7.455V20.182C7.455 21.182 8.273 22.000 9.273 22.000H18.364C19.364 22.000 20.182 21.182 20.182 20.182V3.818C20.182 2.818 19.364 2.000 18.364 2.000ZM10.909 11.091V9.727C10.909 8.455 9.636 7.455 8.364 7.455C7.091 7.455 5.818 8.455 5.818 9.727V11.091C5.273 11.091 4.727 11.636 4.727 12.182V15.364C4.727 16.000 5.273 16.545 5.818 16.545H10.818C11.455 16.545 12.000 16.000 12.000 15.455V12.273C12.000 11.636 11.455 11.091 10.909 11.091ZM9.727 11.091H7.000V9.727C7.000 9.000 7.636 8.545 8.364 8.545C9.091 8.545 9.727 9.000 9.727 9.727V11.091Z", fill: color }))); }; PhonelinkLock.displayName = 'PhonelinkLock';