Skip to content
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
36 changes: 36 additions & 0 deletions src/Gallery/insertYourLoaderHere/ChartyAxisOnRight.js
Original file line number Diff line number Diff line change
@@ -0,0 +1,36 @@
import React from "react"
import ContentLoader, { Rect, Circle, Path } from "react-content-loader/native"

const ChartyAxisOnRight = props => {
return(
<ContentLoader
speed={1.5}
width={400}
height={180}
viewBox="0 0 400 180"
backgroundColor="#eaeced"
foregroundColor="#ffffff"
{...props}
>
<Rect x="9" y="0" rx="5" ry="5" width="347" height="180" />
<Rect x="131" y="82" rx="0" ry="0" width="24" height="0" />
<Rect x="363" y="31" rx="5" ry="5" width="30" height="12" />
<Rect x="363" y="59" rx="5" ry="5" width="30" height="12" />
<Rect x="363" y="87" rx="5" ry="5" width="30" height="12" />
<Rect x="363" y="167" rx="5" ry="5" width="30" height="12" />
<Rect x="363" y="3" rx="5" ry="5" width="30" height="12" />
<Rect x="363" y="138" rx="5" ry="5" width="30" height="12" />
<Rect x="363" y="114" rx="5" ry="5" width="30" height="12" />
</ContentLoader>
)
}


ChartyAxisOnRight.metadata = {
name: 'Erfin Badriansyah',
github: 'erfinbadrian',
description: 'Chart with yAxis on right',
filename: 'ChartyAxisOnRight',
}

export default ChartyAxisOnRight
1 change: 1 addition & 0 deletions src/Gallery/insertYourLoaderHere/index.js
Original file line number Diff line number Diff line change
@@ -1,3 +1,4 @@
export { default as ChartyAxisOnRight } from './ChartyAxisOnRight'
export { default as Sidebar } from './Sidebar'
export { default as TaskList } from './TaskList'
export { default as RepeatableTableRows } from './RepeatableTableRows'
Expand Down