2023-10-26 19:59:24 +02:00
|
|
|
export const toAstroComponent = (innerSVG: string, title: string) => `---
|
|
|
|
import type { Props } from './Props.d.ts';
|
|
|
|
export type { Props };
|
|
|
|
|
|
|
|
let {
|
|
|
|
size = '24px',
|
|
|
|
title,
|
|
|
|
width = size,
|
|
|
|
height = size,
|
|
|
|
...props
|
|
|
|
}: Props = {
|
|
|
|
'fill': 'none',
|
|
|
|
'title': '${title}',
|
|
|
|
'viewBox': '0 0 24 24',
|
|
|
|
...Astro.props
|
|
|
|
}
|
|
|
|
|
|
|
|
const toAttributeSize = (size: number | string) =>
|
|
|
|
String(size).replace(/(?<=[0-9])x$/, 'em')
|
|
|
|
|
|
|
|
size = toAttributeSize(size)
|
|
|
|
width = toAttributeSize(width)
|
|
|
|
height = toAttributeSize(height)
|
|
|
|
---
|
|
|
|
<style is:global>
|
|
|
|
.icon {
|
2023-10-31 20:27:16 +01:00
|
|
|
width: .85em;
|
|
|
|
height: .85em;
|
2023-10-26 19:59:24 +02:00
|
|
|
stroke: currentcolor;
|
|
|
|
stroke-width: var(--border-width);
|
|
|
|
stroke-linecap: round;
|
|
|
|
stroke-linejoin: round;
|
|
|
|
fill: none;
|
|
|
|
vertical-align: baseline;
|
2023-10-31 20:27:16 +01:00
|
|
|
margin: 0;
|
|
|
|
display: inline-block;
|
2023-10-26 19:59:24 +02:00
|
|
|
}
|
|
|
|
</style>
|
|
|
|
<svg width={width} height={height} {...props} class="icon">{title ? (<title>{title}</title>) : ''}${innerSVG}</svg>`
|