sn-tabs-x
v0.0.5
Published
SnTabs is an Angular 21 standalone tabs/tab panel component
Downloads
502
Readme
sn-tabs-x
A tabbed navigation component for Angular with dynamic tab panels and customizable styling.
Installation
npm i sn-tabs-xUsage
import { SnTabsXComponent } from 'sn-tabs-x';
@Component({
imports: [SnTabsXComponent],
template: `
<sn-tabs-x [tabs]="tabs"></sn-tabs-x>
`
})
export class MyComponent {
tabs = [
{ label: 'Overview', content: 'Overview panel content' },
{ label: 'Settings', content: 'Settings panel content' },
];
}