Skip to content

Added new loader "CategoryLoader" #297

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

Merged
merged 3 commits into from
May 30, 2023
Merged
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
33 changes: 33 additions & 0 deletions src/Gallery/insertYourLoaderHere/CategoryLoader.js
Original file line number Diff line number Diff line change
@@ -0,0 +1,33 @@
import React from "react"
import ContentLoader from "react-content-loader"

const CategoryLoader = (props) => (
<ContentLoader
speed={2}
width={700}
height={300}
viewBox="0 0 700 300"
backgroundColor="#f5f5f5"
foregroundColor="#dbdbdb"
{...props}
>
<rect x="12" y="35" rx="0" ry="0" width="6" height="246" />
<rect x="14" y="34" rx="0" ry="0" width="408" height="6" />
<rect x="416" y="34" rx="0" ry="0" width="6" height="246" />
<rect x="12" y="276" rx="0" ry="0" width="408" height="6" />
<rect x="150" y="53" rx="6" ry="6" width="127" height="15" />
<rect x="37" y="77" rx="7" ry="7" width="361" height="139" />
<rect x="58" y="225" rx="0" ry="0" width="316" height="8" />
<rect x="86" y="238" rx="0" ry="0" width="267" height="8" />
<rect x="58" y="252" rx="0" ry="0" width="316" height="8" />
</ContentLoader>
)

CategoryLoader.metadata = {
name: "Nitish Sharma",
github: "Nitz2611",
description: "Category with image and description",
filename: "CategoryLoader"
}

export default CategoryLoader
2 changes: 2 additions & 0 deletions src/Gallery/insertYourLoaderHere/index.js
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,7 @@ export { default as TaskList } from './TaskList'
export { default as RepeatableTableRows } from './RepeatableTableRows'
export { default as GlobalSidebar } from './GlobalSidebar'
export { default as HeadBodyGrid } from './HeadBodyGrid'
export { default as CategoryLoader } from './CategoryLoader'
export { default as ResponsiveArticle } from './ResponsiveArticle'
export { default as BootstrapCardDataTable } from './BootstrapCardDataTable'
export { default as HackerNewsLoader } from './HackerNewsLoader'
Expand Down Expand Up @@ -79,3 +80,4 @@ export { default as CheckboxList } from './CheckboxList'
export { default as ImageUpload } from './ImageUpload'
export { default as HeaderLoader } from './HeaderLoader'
export { default as Twitter } from './Twitter'