Skip to content

Commit

Permalink
feat: create LinkedIn loader. close #62 (#72)
Browse files Browse the repository at this point in the history
  • Loading branch information
Victoria Mei authored and danilowoz committed Oct 11, 2019
1 parent 9c60022 commit f76aa32
Show file tree
Hide file tree
Showing 2 changed files with 33 additions and 1 deletion.
32 changes: 32 additions & 0 deletions src/Gallery/insertYourLoaderHere/LinkedIn.js
Original file line number Diff line number Diff line change
@@ -0,0 +1,32 @@
import React from 'react'
import ContentLoader from 'react-content-loader'

const LinkedInStyle = props => {
return (
<ContentLoader
height={475}
width={400}
speed={2}
primaryColor="#fcfafd"
secondaryColor="#ecebeb"
{...props}
>
<circle cx="56" cy="35" r="28" />
<rect x="14" y="81" rx="4" ry="4" width="91" height="8" />
<rect x="130" y="73" rx="5" ry="5" width="159" height="172" />
<rect x="96" y="86" rx="0" ry="0" width="0" height="0" />
<rect x="23" y="103" rx="0" ry="0" width="70" height="6" />
<rect x="131" y="22" rx="0" ry="0" width="154" height="40" />
<rect x="286" y="111" rx="0" ry="0" width="0" height="0" />
</ContentLoader>
)
}

LinkedInStyle.metadata = {
name: 'Victoria Mei',
github: 'vm930',
description: 'LinkedIn Style',
filename: 'LinkedIn',
}

export default LinkedInStyle
2 changes: 1 addition & 1 deletion src/Gallery/insertYourLoaderHere/index.js
Original file line number Diff line number Diff line change
@@ -1,3 +1,4 @@
export { default as LinkedIn } from './LinkedIn'
export { default as GoogleMap } from './GoogleMap'
export { default as ForumPost } from './ForumPost'
export { default as CleanChat } from './CleanChat'
Expand All @@ -21,4 +22,3 @@ export { default as Instagram } from './Instagram'
export { default as Code } from './Code'
export { default as BulletList } from './BulletList'
export { default as List } from './NestedList'

0 comments on commit f76aa32

Please sign in to comment.