Skip to content

Commit 46886ed

Browse files
authored
v0.2.21
1 parent 61c33a8 commit 46886ed

File tree

5 files changed

+40
-2
lines changed

5 files changed

+40
-2
lines changed

package-lock.json

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@channel.io/design-system",
3-
"version": "0.2.20",
3+
"version": "0.2.21",
44
"description": "Design System by Channel",
55
"repository": {
66
"type": "git",
Lines changed: 10 additions & 0 deletions
Loading
Lines changed: 26 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,26 @@
1+
import React from 'react'
2+
3+
function SvgLinkedin(props: React.SVGProps<SVGSVGElement>) {
4+
return (
5+
<svg width="1em" height="1em" viewBox="0 0 24 24" fill="none" {...props}>
6+
<g fill="currentColor" clipPath="url(#linkedin_svg__clip0)">
7+
<path
8+
fill="currentColor"
9+
d="M19.603 3H4.398C3.626 3 3 3.626 3 4.398v15.205c0 .773.626 1.398 1.398 1.398h15.205c.773 0 1.398-.625 1.398-1.398V4.398A1.4 1.4 0 0019.603 3zM8.46 18.299H5.784v-8.55H8.46v8.55zM7.116 8.57a1.547 1.547 0 110-3.095 1.547 1.547 0 010 3.095zm11.315 5.991c-.002 1.246-.001 2.492-.001 3.738h-2.668v-.83-2.84c0-.832.104-2.153-.701-2.592-.53-.29-1.28-.22-1.725.207-.323.308-.444.758-.497 1.2a5.57 5.57 0 00-.037.684V18.3h-2.68V9.75h2.544l-.002 1.161h.01c.036-.061.09-.113.117-.179.715-1.681 3.868-1.751 4.964-.117.24.358.384.771.482 1.187.132.56.175 1.13.189 1.702.008.352.005.705.005 1.057z"
10+
fillOpacity={0.85}
11+
/>
12+
</g>
13+
<defs fill="currentColor">
14+
<clipPath fill="currentColor" id="linkedin_svg__clip0">
15+
<path
16+
fill="currentColor"
17+
transform="translate(3 3)"
18+
d="M0 0h18v18H0z"
19+
/>
20+
</clipPath>
21+
</defs>
22+
</svg>
23+
)
24+
}
25+
26+
export default SvgLinkedin

src/components/Icon/generated/index.tsx

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -203,6 +203,7 @@ import LightningFilled from './LightningFilled'
203203
import Lightning from './Lightning'
204204
import LinkOff from './LinkOff'
205205
import Link from './Link'
206+
import Linkedin from './Linkedin'
206207
import List from './List'
207208
import LockOpen from './LockOpen'
208209
import Lock from './Lock'
@@ -565,6 +566,7 @@ const icons = {
565566
'lightning': Lightning,
566567
'link-off': LinkOff,
567568
'link': Link,
569+
'linkedin': Linkedin,
568570
'list': List,
569571
'lock-open': LockOpen,
570572
'lock': Lock,

0 commit comments

Comments
 (0)