Skip to content

Commit

Permalink
feat(icons): add BaselineHelpIcon (#180)
Browse files Browse the repository at this point in the history
  • Loading branch information
golcinho authored and deini committed Aug 20, 2019
1 parent 188c423 commit e2387cf
Show file tree
Hide file tree
Showing 4 changed files with 31 additions and 0 deletions.
1 change: 1 addition & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -5,3 +5,4 @@ coverage
.vscode
packages/docs/.next
packages/docs/out
.idea
28 changes: 28 additions & 0 deletions packages/big-design-icons/src/components/BaselineHelpIcon.tsx
Original file line number Diff line number Diff line change
@@ -0,0 +1,28 @@
// **********************************
// Auto-generated file, do NOT modify
// **********************************
import React from 'react';

import { createStyledIcon, IconProps } from '../base';

const Icon =
/*#__PURE__*/
React.memo<Partial<IconProps>>(({ title, theme, ...props }) => (
<svg
width={24}
height={24}
viewBox="0 0 24 24"
stroke="currentColor"
fill="currentColor"
strokeWidth="0"
{...props}
>
<title>{title}</title>
<path d="M0 0h24v24H0z" fill="none" />
<path d="M12 2C6.48 2 2 6.48 2 12s4.48 10 10 10 10-4.48 10-10S17.52 2 12 2zm1 17h-2v-2h2v2zm2.07-7.75l-.9.92C13.45 12.9 13 13.5 13 15h-2v-.5c0-1.1.45-2.1 1.17-2.83l1.24-1.26c.37-.36.59-.86.59-1.41 0-1.1-.9-2-2-2s-2 .9-2 2H8c0-2.21 1.79-4 4-4s4 1.79 4 4c0 .88-.36 1.68-.93 2.25z" />
</svg>
));

export const BaselineHelpIcon =
/*#__PURE__*/
createStyledIcon(Icon);
1 change: 1 addition & 0 deletions packages/big-design-icons/src/components/index.ts
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,7 @@ export * from './ArrowBackIcon';
export * from './ArrowDropDownIcon';
export * from './ArrowForwardIcon';
export * from './AssignmentIcon';
export * from './BaselineHelpIcon';
export * from './CheckCircleIcon';
export * from './CheckIcon';
export * from './ChevronLeftIcon';
Expand Down
1 change: 1 addition & 0 deletions packages/big-design-icons/svgs/material/baseline-help.svg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.

0 comments on commit e2387cf

Please sign in to comment.