akkoma-fe/src/components/list_card/list_card.js

17 lines
229 B
JavaScript
Raw Normal View History

2022-06-16 02:41:43 +00:00
import { library } from '@fortawesome/fontawesome-svg-core'
import {
faEllipsisH
} from '@fortawesome/free-solid-svg-icons'
library.add(
faEllipsisH
)
2022-06-15 16:13:33 +00:00
const ListCard = {
props: [
'list'
2022-06-16 10:09:41 +00:00
]
2022-06-15 16:13:33 +00:00
}
export default ListCard