2023-04-21 03:48:37 +00:00
|
|
|
// Export defs
|
2023-10-26 14:10:08 +05:30
|
|
|
import { logoPath } from '../../../sites/shared/components/logos/freesewing.mjs'
|
|
|
|
|
2023-04-21 03:48:37 +00:00
|
|
|
export const logoDefs = [
|
|
|
|
{
|
|
|
|
name: 'logo',
|
|
|
|
def: (scale) =>
|
2023-10-28 21:45:30 +02:00
|
|
|
`<g id="logo" transform="scale(${
|
|
|
|
2 * scale
|
|
|
|
}) translate(-23 -36)"><path class="logo" stroke="none" fill="currentColor" d="${logoPath}"/></g>`,
|
2023-04-21 03:48:37 +00:00
|
|
|
},
|
|
|
|
]
|