mirror of
https://github.com/kremalicious/blog.git
synced 2024-12-23 09:45:56 +01:00
36 lines
903 B
TypeScript
36 lines
903 B
TypeScript
export const toReactComponent = (innerSVG: string, title: string) => `
|
|
import type { Props } from './Props.d.ts';
|
|
|
|
export function Icon(props: Props) {
|
|
let {
|
|
size = '24px',
|
|
title,
|
|
width = size,
|
|
height = size
|
|
}: Props = {
|
|
'title': '${title}',
|
|
...props
|
|
}
|
|
|
|
const toAttributeSize = (size: number | string) =>
|
|
String(size).replace(/(?<=[0-9])x$/, 'em')
|
|
|
|
size = toAttributeSize(size)
|
|
width = toAttributeSize(width)
|
|
height = toAttributeSize(height)
|
|
|
|
const style = {
|
|
'width': '1em',
|
|
'height': '1em',
|
|
'stroke': 'currentcolor',
|
|
'strokeWidth': 'var(--border-width)',
|
|
'strokeLinecap': 'round',
|
|
'strokeLinejoin': 'round',
|
|
'fill': 'none',
|
|
'verticalAlign': 'baseline'
|
|
}
|
|
|
|
return <svg width={width} height={height} fill="none" viewBox="0 0 24 24" {...props} style={style}>{title ? (<title>{title}</title>) : ''}${innerSVG}</svg>
|
|
}
|
|
`
|