diff --git a/.changeset/warm-masks-ring.md b/.changeset/warm-masks-ring.md index 9d1d5e0c5a..783f49474e 100644 --- a/.changeset/warm-masks-ring.md +++ b/.changeset/warm-masks-ring.md @@ -83,3 +83,35 @@ Add new Grid option called `InfoCardGrid` which is a more customizable card opti ``` Expose existing `CustomDocsPanel` so that it can be used independently if desired. + +```tsx +const panels: PanelConfig[] = [ + { + description: '', + filterPredicate: entity => {}, + panelType: 'InfoCardGrid', + title: 'Standards', + panelProps: { + hideSupport: true, + linkContent: 'Read more', + linkDestination: entity => {}, + }, + }, + { + description: '', + filterPredicate: entity => {}, + panelType: 'DocsCardGrid', + title: 'Contribute', + }, +]; +{ + panels.map((config, index) => ( + + )); +} +```