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/edit-pen.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/EditPenIcon.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 EditPenIcon: 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 18 18"
fill="none"
xmlns="http://www.w3.org/2000/svg"
>
<path
d="M1.895 16.105h1.35L13.453 5.897l-1.35-1.35L1.895 14.755v1.35zM.947 18a.917.917 0 01-.675-.272.916.916 0 01-.272-.675v-2.298a1.87 1.87 0 01.545-1.326L13.453.545c.19-.174.398-.308.627-.403A1.87 1.87 0 0114.803 0c.252 0 .497.047.734.142.237.095.442.237.616.426l1.302 1.327c.19.173.328.379.415.616a2.05 2.05 0 010 1.432 1.775 1.775 0 01-.415.628L4.571 17.455A1.871 1.871 0 013.245 18H.947zM12.766 5.234l-.663-.687 1.35 1.35-.687-.663z"
fill="currentColor"
/>
</svg>
);
};
export default EditPenIcon;
1 change: 1 addition & 0 deletions src/icons/experimental/index.ts
Original file line number Diff line number Diff line change
Expand Up @@ -13,3 +13,4 @@ export { default as SupportAgentIcon } from './SupportAgentIcon';
export { default as ExitIcon } from './ExitIcon';
export { default as GroupIcon } from './GroupIcon';
export { default as TrashIcon } from './TrashIcon';
export { default as EditPenIcon } from './EditPenIcon';
Loading