Skip to content

Commit

Permalink
gitlab added
Browse files Browse the repository at this point in the history
  • Loading branch information
artcoholic committed Mar 21, 2024
1 parent defa2ec commit c6fe9e3
Show file tree
Hide file tree
Showing 6 changed files with 32 additions and 2 deletions.
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "akar-icons-app",
"version": "2.1.16",
"version": "2.1.17",
"repository": "https://github.com/artcoholic/akar-icons-app.git",
"homepage": "https://akaricons.com",
"author": {
Expand Down
2 changes: 1 addition & 1 deletion src/data.json

Large diffs are not rendered by default.

1 change: 1 addition & 0 deletions src/icons.d.ts
Original file line number Diff line number Diff line change
Expand Up @@ -440,3 +440,4 @@ export const YarnFill: Icon;
export const DjangoFill: Icon;
export const VscodeFill: Icon;
export const TypescriptFill: Icon;
export const GitlabFill: Icon;
1 change: 1 addition & 0 deletions src/icons.js
Original file line number Diff line number Diff line change
Expand Up @@ -431,3 +431,4 @@ export { default as YarnFill } from './icons/yarn-fill';
export { default as DjangoFill } from './icons/django-fill';
export { default as VscodeFill } from './icons/vscode-fill';
export { default as TypescriptFill } from './icons/typescript-fill';
export { default as GitlabFill } from './icons/gitlab-fill';
25 changes: 25 additions & 0 deletions src/icons/gitlab-fill.js
Original file line number Diff line number Diff line change
@@ -0,0 +1,25 @@
import React from 'react';
import PropTypes from 'prop-types';

const GitlabFill = ({ color = 'currentColor', size = '24', ...otherProps }) => {
return (
<svg
xmlns="http://www.w3.org/2000/svg"
width={size}
height={size}
viewBox="0 0 24 24"
fill={color}
{...otherProps}
className="ai ai-GitlabFill"
>
<path d="M22.749 9.769l-.031-.08-3.027-7.9a.788.788 0 0 0-.782-.495.81.81 0 0 0-.456.17.81.81 0 0 0-.268.408L16.14 8.125H7.865L5.822 1.872a.794.794 0 0 0-.269-.409.81.81 0 0 0-.926-.05c-.14.09-.25.22-.312.376L1.283 9.684l-.03.08a5.62 5.62 0 0 0 1.864 6.496l.01.008.028.02 4.61 3.453 2.282 1.726 1.39 1.049a.935.935 0 0 0 1.13 0l1.389-1.05 2.281-1.726 4.639-3.473.011-.01A5.623 5.623 0 0 0 22.75 9.77z"></path>
</svg>
);
};

GitlabFill.propTypes = {
color: PropTypes.string,
size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]),
};

export default GitlabFill;
3 changes: 3 additions & 0 deletions src/svg/gitlab-fill.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 c6fe9e3

Please sign in to comment.