mirror of
https://github.com/jgthms/bulma
synced 2026-03-19 20:04:30 -07:00
Add all Elements
This commit is contained in:
@@ -1,5 +1,5 @@
|
||||
import VarItem from "../components/VarItem";
|
||||
import { CSSVAR_KEYS } from "../constants";
|
||||
import VarItem from "components/VarItem";
|
||||
import { CSSVAR_KEYS } from "root/constants";
|
||||
|
||||
function Box() {
|
||||
const ids = CSSVAR_KEYS.box.map((i) => i.id);
|
||||
16
docs/_react/bulma-customizer/src/pages/elements/Content.jsx
Normal file
16
docs/_react/bulma-customizer/src/pages/elements/Content.jsx
Normal file
@@ -0,0 +1,16 @@
|
||||
import VarItem from "components/VarItem";
|
||||
import { CSSVAR_KEYS } from "root/constants";
|
||||
|
||||
function Content() {
|
||||
const ids = CSSVAR_KEYS.content.map((i) => i.id);
|
||||
|
||||
return (
|
||||
<div>
|
||||
{ids.map((id) => {
|
||||
return <VarItem key={id} id={id} />;
|
||||
})}
|
||||
</div>
|
||||
);
|
||||
}
|
||||
|
||||
export default Content;
|
||||
16
docs/_react/bulma-customizer/src/pages/elements/Delete.jsx
Normal file
16
docs/_react/bulma-customizer/src/pages/elements/Delete.jsx
Normal file
@@ -0,0 +1,16 @@
|
||||
import VarItem from "components/VarItem";
|
||||
import { CSSVAR_KEYS } from "root/constants";
|
||||
|
||||
function Delete() {
|
||||
const ids = CSSVAR_KEYS.delete.map((i) => i.id);
|
||||
|
||||
return (
|
||||
<div>
|
||||
{ids.map((id) => {
|
||||
return <VarItem key={id} id={id} />;
|
||||
})}
|
||||
</div>
|
||||
);
|
||||
}
|
||||
|
||||
export default Delete;
|
||||
16
docs/_react/bulma-customizer/src/pages/elements/Icon.jsx
Normal file
16
docs/_react/bulma-customizer/src/pages/elements/Icon.jsx
Normal file
@@ -0,0 +1,16 @@
|
||||
import VarItem from "components/VarItem";
|
||||
import { CSSVAR_KEYS } from "root/constants";
|
||||
|
||||
function Icon() {
|
||||
const ids = CSSVAR_KEYS.icon.map((i) => i.id);
|
||||
|
||||
return (
|
||||
<div>
|
||||
{ids.map((id) => {
|
||||
return <VarItem key={id} id={id} />;
|
||||
})}
|
||||
</div>
|
||||
);
|
||||
}
|
||||
|
||||
export default Icon;
|
||||
@@ -0,0 +1,16 @@
|
||||
import VarItem from "components/VarItem";
|
||||
import { CSSVAR_KEYS } from "root/constants";
|
||||
|
||||
function Notification() {
|
||||
const ids = CSSVAR_KEYS.notification.map((i) => i.id);
|
||||
|
||||
return (
|
||||
<div>
|
||||
{ids.map((id) => {
|
||||
return <VarItem key={id} id={id} />;
|
||||
})}
|
||||
</div>
|
||||
);
|
||||
}
|
||||
|
||||
export default Notification;
|
||||
16
docs/_react/bulma-customizer/src/pages/elements/Progress.jsx
Normal file
16
docs/_react/bulma-customizer/src/pages/elements/Progress.jsx
Normal file
@@ -0,0 +1,16 @@
|
||||
import VarItem from "components/VarItem";
|
||||
import { CSSVAR_KEYS } from "root/constants";
|
||||
|
||||
function Progress() {
|
||||
const ids = CSSVAR_KEYS.progress.map((i) => i.id);
|
||||
|
||||
return (
|
||||
<div>
|
||||
{ids.map((id) => {
|
||||
return <VarItem key={id} id={id} />;
|
||||
})}
|
||||
</div>
|
||||
);
|
||||
}
|
||||
|
||||
export default Progress;
|
||||
16
docs/_react/bulma-customizer/src/pages/elements/Table.jsx
Normal file
16
docs/_react/bulma-customizer/src/pages/elements/Table.jsx
Normal file
@@ -0,0 +1,16 @@
|
||||
import VarItem from "components/VarItem";
|
||||
import { CSSVAR_KEYS } from "root/constants";
|
||||
|
||||
function Table() {
|
||||
const ids = CSSVAR_KEYS.table.map((i) => i.id);
|
||||
|
||||
return (
|
||||
<div>
|
||||
{ids.map((id) => {
|
||||
return <VarItem key={id} id={id} />;
|
||||
})}
|
||||
</div>
|
||||
);
|
||||
}
|
||||
|
||||
export default Table;
|
||||
16
docs/_react/bulma-customizer/src/pages/elements/Tag.jsx
Normal file
16
docs/_react/bulma-customizer/src/pages/elements/Tag.jsx
Normal file
@@ -0,0 +1,16 @@
|
||||
import VarItem from "components/VarItem";
|
||||
import { CSSVAR_KEYS } from "root/constants";
|
||||
|
||||
function Tag() {
|
||||
const ids = CSSVAR_KEYS.tag.map((i) => i.id);
|
||||
|
||||
return (
|
||||
<div>
|
||||
{ids.map((id) => {
|
||||
return <VarItem key={id} id={id} />;
|
||||
})}
|
||||
</div>
|
||||
);
|
||||
}
|
||||
|
||||
export default Tag;
|
||||
16
docs/_react/bulma-customizer/src/pages/elements/Title.jsx
Normal file
16
docs/_react/bulma-customizer/src/pages/elements/Title.jsx
Normal file
@@ -0,0 +1,16 @@
|
||||
import VarItem from "components/VarItem";
|
||||
import { CSSVAR_KEYS } from "root/constants";
|
||||
|
||||
function Title() {
|
||||
const ids = CSSVAR_KEYS.title.map((i) => i.id);
|
||||
|
||||
return (
|
||||
<div>
|
||||
{ids.map((id) => {
|
||||
return <VarItem key={id} id={id} />;
|
||||
})}
|
||||
</div>
|
||||
);
|
||||
}
|
||||
|
||||
export default Title;
|
||||
Reference in New Issue
Block a user