mirror of
https://github.com/jgthms/bulma
synced 2026-03-17 19:04:30 -07:00
Add Typography
This commit is contained in:
16
docs/_react/bulma-customizer/src/pages/Typography.jsx
Normal file
16
docs/_react/bulma-customizer/src/pages/Typography.jsx
Normal file
@@ -0,0 +1,16 @@
|
||||
import VarItem from "../components/VarItem";
|
||||
import { CSSVAR_KEYS } from "../constants";
|
||||
|
||||
function Typography() {
|
||||
const ids = CSSVAR_KEYS.typography.map((i) => i.id);
|
||||
|
||||
return (
|
||||
<div>
|
||||
{ids.map((id) => {
|
||||
return <VarItem key={id} id={id} />;
|
||||
})}
|
||||
</div>
|
||||
);
|
||||
}
|
||||
|
||||
export default Typography;
|
||||
Reference in New Issue
Block a user