Skip to content

Commit

Permalink
Added solid login icon
Browse files Browse the repository at this point in the history
  • Loading branch information
sschoger committed Aug 9, 2020
1 parent acbf099 commit 82f6a4d
Show file tree
Hide file tree
Showing 6 changed files with 30 additions and 0 deletions.
7 changes: 7 additions & 0 deletions react/solid/Login.jsx
@@ -0,0 +1,7 @@
import * as React from "react";

function LoginIcon(props) {
return <svg viewBox="0 0 20 20" fill="currentColor" {...props}><path fillRule="evenodd" d="M3 3a1 1 0 011 1v12a1 1 0 11-2 0V4a1 1 0 011-1zm7.707 3.293a1 1 0 010 1.414L9.414 9H17a1 1 0 110 2H9.414l1.293 1.293a1 1 0 01-1.414 1.414l-3-3a1 1 0 010-1.414l3-3a1 1 0 011.414 0z" clipRule="evenodd" /></svg>;
}

export default LoginIcon;
1 change: 1 addition & 0 deletions react/solid/index.js
Expand Up @@ -123,6 +123,7 @@ export { default as Link } from './Link.jsx'
export { default as LocationMarker } from './LocationMarker.jsx'
export { default as LockClosed } from './LockClosed.jsx'
export { default as LockOpen } from './LockOpen.jsx'
export { default as Login } from './Login.jsx'
export { default as Logout } from './Logout.jsx'
export { default as MailOpen } from './MailOpen.jsx'
export { default as Mail } from './Mail.jsx'
Expand Down
3 changes: 3 additions & 0 deletions solid/login.svg
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
3 changes: 3 additions & 0 deletions src/solid/login.svg
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
15 changes: 15 additions & 0 deletions vue/solid/Login.js
@@ -0,0 +1,15 @@
import { createVNode as _createVNode, openBlock as _openBlock, createBlock as _createBlock } from "vue"

export default function render(_ctx, _cache) {
return (_openBlock(), _createBlock("svg", {
xmlns: "http://www.w3.org/2000/svg",
viewBox: "0 0 20 20",
fill: "currentColor"
}, [
_createVNode("path", {
"fill-rule": "evenodd",
d: "M3 3a1 1 0 011 1v12a1 1 0 11-2 0V4a1 1 0 011-1zm7.707 3.293a1 1 0 010 1.414L9.414 9H17a1 1 0 110 2H9.414l1.293 1.293a1 1 0 01-1.414 1.414l-3-3a1 1 0 010-1.414l3-3a1 1 0 011.414 0z",
"clip-rule": "evenodd"
})
]))
}
1 change: 1 addition & 0 deletions vue/solid/index.js
Expand Up @@ -123,6 +123,7 @@ export { default as Link } from './Link.js'
export { default as LocationMarker } from './LocationMarker.js'
export { default as LockClosed } from './LockClosed.js'
export { default as LockOpen } from './LockOpen.js'
export { default as Login } from './Login.js'
export { default as Logout } from './Logout.js'
export { default as MailOpen } from './MailOpen.js'
export { default as Mail } from './Mail.js'
Expand Down

0 comments on commit 82f6a4d

Please sign in to comment.