Styled & Label

By using props:

<SocialShare
	:styled="true"
	:label="true"
/>

By using options:

export default defineNuxtConfig({
	socialShare: {
		styled: true,
		label: true,
	}
})

Styled & No Label

By using props:

<SocialShare
	:styled="true"
	:label="false"
/>

By using options:

export default defineNuxtConfig({
	socialShare: {
		styled: true,
		label: false,
	}
})

Styled & No Label, with custom style

By using props:

<SocialShare
	:styled="true"
	:label="false"
/>

By using options:

export default defineNuxtConfig({
	socialShare: {
		styled: true,
		label: false,
	}
})

No Style & Label (Default)

By using props:

<SocialShare
	:styled="false"
	:label="true"
/>

By using options:

export default defineNuxtConfig({
	socialShare: {
		styled: false,
		label: true,
	}
})