[ci] format

This commit is contained in:
natemoo-re 2022-05-24 16:59:29 +00:00 committed by github-actions[bot]
parent 296fff2cff
commit 58b78229c1

View file

@ -435,7 +435,11 @@ function internalSpreadAttributes(values: Record<any, any>, shouldEscape = true)
}
// Adds support for `<Component {...value} />
export function spreadAttributes(values: Record<any, any>, name: string, { class: scopedClassName }: { class?: string } = {}) {
export function spreadAttributes(
values: Record<any, any>,
name: string,
{ class: scopedClassName }: { class?: string } = {}
) {
let output = '';
// If the compiler passes along a scoped class, merge with existing props or inject it
if (scopedClassName) {