Skip to content

🍱 Add "Open Lock" Icon (#26) #83

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Open
wants to merge 1 commit into
base: develop
Choose a base branch
from
Open
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
30 changes: 30 additions & 0 deletions src/Icon/icons/collection/lock_open.tsx
Original file line number Diff line number Diff line change
@@ -0,0 +1,30 @@
/*
* Copyright (c) 2022 The Ontario Institute for Cancer Research. All rights reserved
*
* This program and the accompanying materials are made available under the terms of
* the GNU Affero General Public License v3.0. You should have received a copy of the
* GNU Affero General Public License along with this program.
* If not, see <http://www.gnu.org/licenses/>.
*
* THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND ANY
* EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES
* OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT
* SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT,
* INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED
* TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS;
* OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER
* IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN
* ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
*/

import { css } from '@emotion/react';

export default {
title: 'Open Lock Icon',
viewBox: '0 0 14 21',
path: 'm3.99032061 8.05561848h7.97709919c.5984733 0 2.0325802.2269104 1.9974555 2.00184182v8.0184177c0 .5009209-.1280108 1.8161584-1.9974555 2.0018417h-9.9694656c-.49872774 0-2.15755636-.5075054-1.99745547-2.0018417v-8.0184177c-.15954967-1.95860758 1.88646804-2.00184182 2.38519577-2.00184182v-2.80515696c-.14495658-2.98592705 1.50388311-4.90902469 4.09826479-5.20957722 2.99236641-.30055253 5.15321911 1.7976801 5.15321911 5.00920886 0 .6011051-.3149567 1.01275684-.8136844 1.01275684-.4987278 0-.8182166-.41321836-.84844056-1.01275684-.14120926-2.80110024-1.50943921-3.55666469-3.38399089-3.43916002-1.49618321.2704839-2.79657937 1.76145475-2.60074194 3.5393442zm3.9309071 8.14145572v-2.2383891c.43098374-.2935282.71429217-.7865292.71429217-1.3454953 0-.8992062-.73267236-1.6289235-1.63520303-1.6289235-.90316446 0-1.63520303.7290861-1.63520303 1.6289235 0 .5592817.28330843 1.0522828.71429218 1.3454953v2.2383891c0 .5062572.41228665.916881.92091085.916881.5089411 0 .92091086-.4106238.92091086-.916881z',
css: css`
height: 14px;
width: 21px;
`,
};
2 changes: 2 additions & 0 deletions src/Icon/icons/index.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -48,6 +48,7 @@ import star from './collection/star';
import download from './collection/download';
import upload from './collection/upload';
import lock from './collection/lock';
import lock_open from './collection/lock_open';
import dash from './collection/dash';
import file from './collection/file';
import form from './collection/form';
Expand Down Expand Up @@ -114,6 +115,7 @@ export const Icons = {
download,
upload,
lock,
lock_open,
dash,
file,
form,
Expand Down