Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 3 additions & 0 deletions assets/icons/experimental/shield-account.svg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
27 changes: 27 additions & 0 deletions src/icons/experimental/ShieldAccountIcon.tsx
Original file line number Diff line number Diff line change
@@ -0,0 +1,27 @@
// DO NOT EDIT. This file was generated by running `npm run generate`.;
import * as React from 'react';
import { get } from '../../utils/themeGet';
import { IconProps } from '../IconProps';
type Props = IconProps;
const ShieldAccountIcon: React.FC<Props> = ({ size = 'medium', color = 'inherit', ...rest }) => {
const props = { ...rest, color };
const sizePx = Number.isFinite(size as number)
? size
: get(`iconSizes.${size}`)(props) || get('iconSizes.medium')(props);
return (
<svg
{...props}
width={sizePx}
height={sizePx}
viewBox="0 0 24 24"
fill="none"
xmlns="http://www.w3.org/2000/svg"
>
<path
d="M17.0615 16.5625C17.3532 16.2708 17.499 15.9167 17.499 15.5C17.499 15.0833 17.3532 14.7292 17.0615 14.4375C16.7699 14.1458 16.4157 14 15.999 14C15.5824 14 15.2282 14.1458 14.9365 14.4375C14.6449 14.7292 14.499 15.0833 14.499 15.5C14.499 15.9167 14.6449 16.2708 14.9365 16.5625C15.2282 16.8542 15.5824 17 15.999 17C16.4157 17 16.7699 16.8542 17.0615 16.5625ZM15.999 20C16.5157 20 16.9907 19.8792 17.424 19.6375C17.8574 19.3958 18.2074 19.075 18.474 18.675C18.1074 18.4583 17.7157 18.2917 17.299 18.175C16.8824 18.0583 16.449 18 15.999 18C15.549 18 15.1157 18.0583 14.699 18.175C14.2824 18.2917 13.8907 18.4583 13.524 18.675C13.7907 19.075 14.1407 19.3958 14.574 19.6375C15.0074 19.8792 15.4824 20 15.999 20ZM10.999 22C8.68236 21.4167 6.76986 20.0875 5.26152 18.0125C3.75319 15.9375 2.99902 13.6333 2.99902 11.1V5L10.999 2L18.999 5V10.675C18.6824 10.5417 18.3574 10.4208 18.024 10.3125C17.6907 10.2042 17.349 10.125 16.999 10.075V6.4L10.999 4.15L4.99902 6.4V11.1C4.99902 11.8833 5.10319 12.6667 5.31152 13.45C5.51986 14.2333 5.81152 14.9792 6.18652 15.6875C6.56152 16.3958 7.01569 17.05 7.54902 17.65C8.08236 18.25 8.67402 18.75 9.32402 19.15C9.50736 19.6833 9.74902 20.1917 10.049 20.675C10.349 21.1583 10.6907 21.5917 11.074 21.975C11.0574 21.975 11.0449 21.9792 11.0365 21.9875C11.0282 21.9958 11.0157 22 10.999 22ZM15.999 22C14.6157 22 13.4365 21.5125 12.4615 20.5375C11.4865 19.5625 10.999 18.3833 10.999 17C10.999 15.6167 11.4865 14.4375 12.4615 13.4625C13.4365 12.4875 14.6157 12 15.999 12C17.3824 12 18.5615 12.4875 19.5365 13.4625C20.5115 14.4375 20.999 15.6167 20.999 17C20.999 18.3833 20.5115 19.5625 19.5365 20.5375C18.5615 21.5125 17.3824 22 15.999 22Z"
fill="currentColor"
/>
</svg>
);
};
export default ShieldAccountIcon;
1 change: 1 addition & 0 deletions src/icons/experimental/index.ts
Original file line number Diff line number Diff line change
Expand Up @@ -18,3 +18,4 @@ export { default as HailingIcon } from './HailingIcon';
export { default as PinIcon } from './PinIcon';
export { default as SwapIcon } from './SwapIcon';
export { default as CalendarAddIcon } from './CalendarAddIcon';
export { default as ShieldAccountIcon } from './ShieldAccountIcon';
Loading