@platformbuilders/react-native-ui
Version:
Platform Builders Shared Components Library
7 lines • 1.1 kB
JavaScript
import React from 'react';
import Svg, { Path } from 'react-native-svg';
const Profile = ({ color = '#212121', width = 18, height = 18 }) => (React.createElement(Svg, { width: width, height: height, viewBox: "0 0 16 16", fill: "none" },
React.createElement(Path, { d: "M7.97371 8.97934C10.3383 8.97934 12.2561 6.96553 12.2561 4.48278C12.2561 2.00003 10.3382 0 7.97371 0C5.60919 0 3.69128 2.01381 3.69128 4.48278C3.69128 6.95176 5.60917 8.97934 7.97371 8.97934ZM7.97371 1.17242C9.70769 1.17242 11.1264 2.66207 11.1264 4.48278C11.1264 6.3035 9.70769 7.79312 7.97371 7.79312C6.23973 7.79312 4.82099 6.30347 4.82099 4.48275C4.82099 2.66204 6.2397 1.17242 7.97371 1.17242Z", fill: color }),
React.createElement(Path, { d: "M0.564855 16H15.4351C15.7504 16 16 15.7379 16 15.4069C16 12.3034 13.5961 9.7655 10.6273 9.7655H5.37275C2.41708 9.7655 0 12.2896 0 15.4069C0 15.7379 0.249586 16 0.564855 16ZM5.37275 10.9517H10.6273C12.7816 10.9517 14.555 12.6345 14.8309 14.8138H1.16912C1.44498 12.6483 3.2184 10.9517 5.37275 10.9517Z", fill: color })));
export default Profile;
//# sourceMappingURL=profile.js.map