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
4 changes: 4 additions & 0 deletions assets/icons/experimental/assign-driver.svg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
31 changes: 31 additions & 0 deletions src/icons/experimental/AssignDriverIcon.tsx
Original file line number Diff line number Diff line change
@@ -0,0 +1,31 @@
// 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 AssignDriverIcon: 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="M2 13l2.1-6c.1-.3.28-.542.538-.725C4.896 6.092 5.183 6 5.5 6h4.575a6.732 6.732 0 000 2H5.85L4.8 11h6.475c.283.4.6.77.95 1.113.35.341.742.637 1.175.887H4v5h14v-4.075a7.013 7.013 0 002-.6V21c0 .283-.096.52-.288.712A.968.968 0 0119 22h-1a.968.968 0 01-.712-.288A.968.968 0 0117 21v-1H5v1c0 .283-.096.52-.287.712A.967.967 0 014 22H3a.967.967 0 01-.712-.288A.968.968 0 012 21v-8zm13.5 4c.417 0 .77-.146 1.063-.438.291-.291.437-.645.437-1.062 0-.417-.146-.77-.438-1.063A1.446 1.446 0 0015.5 14c-.417 0-.77.146-1.063.438A1.446 1.446 0 0014 15.5c0 .417.146.77.438 1.063.291.291.645.437 1.062.437zm-9 0c.417 0 .77-.146 1.063-.438.291-.291.437-.645.437-1.062 0-.417-.146-.77-.438-1.063A1.446 1.446 0 006.5 14c-.417 0-.77.146-1.063.438A1.447 1.447 0 005 15.5c0 .417.146.77.438 1.063.291.291.645.437 1.062.437z"
fill="currentColor"
/>
<path
d="M17 2a5 5 0 110 10 5 5 0 010-10zm1.814 2.188a.586.586 0 00-.226.043.667.667 0 00-.196.126l-4.035 4.027a.58.58 0 00-.17.415v.718c0 .083.029.154.086.21a.287.287 0 00.21.085h.718a.587.587 0 00.415-.17l4.027-4.026a.556.556 0 00.128-.196.631.631 0 000-.448.484.484 0 00-.128-.193l-.408-.414a.522.522 0 00-.192-.134.613.613 0 00-.23-.043zm-.637 1.635l.215.207-3.19 3.19h-.423V8.8l3.19-3.19.208.214z"
fill="currentColor"
/>
</svg>
);
};
export default AssignDriverIcon;
1 change: 1 addition & 0 deletions src/icons/experimental/index.ts
Original file line number Diff line number Diff line change
Expand Up @@ -20,3 +20,4 @@ export { default as SwapIcon } from './SwapIcon';
export { default as CalendarAddIcon } from './CalendarAddIcon';
export { default as ShieldAccountIcon } from './ShieldAccountIcon';
export { default as QuestionMarkCircleIcon } from './QuestionMarkCircleIcon';
export { default as AssignDriverIcon } from './AssignDriverIcon';
Loading