UNPKG

onecart-ui

Version:

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

9 lines (8 loc) 1.21 kB
import React from 'react'; export const Password = ({ size = 'md', color = 'currentColor', className, 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", xmlns: "http://www.w3.org/2000/svg", className: className, style: style }, React.createElement("path", { d: "M2.142 17.130H21.054V19.021H2.142V17.130ZM3.229 13.300L4.033 11.901L4.837 13.300L6.066 12.591L5.262 11.191H6.870V9.773H5.262L6.870 7.579L5.641 6.870L4.837 8.260L4.033 6.870L2.804 7.579L3.608 8.969H2.000V10.388H3.608L2.000 12.591L3.229 13.300ZM9.565 12.591L10.794 13.300L11.598 11.901L12.402 13.300L13.631 12.591L12.827 11.191H14.435V9.773H12.827L14.435 7.579L13.206 6.870L12.402 8.260L11.598 6.870L10.369 7.579L11.173 8.969H9.565V10.388H11.173L9.565 12.591ZM22.000 9.773H20.392L22.000 7.579L20.771 6.870L19.967 8.260L19.163 6.870L17.934 7.579L18.738 8.969H17.130V10.388H18.738L17.130 12.591L18.359 13.300L19.163 11.901L19.967 13.300L21.196 12.591L20.392 11.191H22.000V9.773Z", fill: color }))); }; Password.displayName = 'Password';