feat(heading): add Heading and Section components

This commit is contained in:
Eric Liu 2024-04-21 14:24:36 -07:00
commit 6806fa24ce
11 changed files with 287 additions and 2 deletions

2
types/index.d.ts vendored
View file

@ -62,6 +62,8 @@ export { default as FormLabel } from "./FormLabel/FormLabel.svelte";
export { default as Grid } from "./Grid/Grid.svelte";
export { default as Row } from "./Grid/Row.svelte";
export { default as Column } from "./Grid/Column.svelte";
export { default as Heading } from "./Heading/Heading.svelte";
export { default as Section } from "./Heading/Section.svelte";
export { default as ImageLoader } from "./ImageLoader/ImageLoader.svelte";
export { default as InlineLoading } from "./InlineLoading/InlineLoading.svelte";
export { default as Layer } from "./Layer/Layer.svelte";