@impactor/ngx-mat
v7.0.0
Published
set of Angular material components
Downloads
37
Maintainers
Readme
Card
generates a material-design card from a plain object
<ngx-card-mat [data]="data" />@Component(...)
export class MyComponent {
data = {
title: "Angular",
content: "I love Angular",
cover: "/public/photo.jpg",
author: {
name: "author name",
image: "author.jpg",
link: "https://github.com/author"
},
link: "https://example.com",
// add a button to easily copy the card content into the clipboard
copyButton: true,
createdAt: "1-1-2000",
updatedAt: "1-1-2001"
}
}