9 lines
226 B
TypeScript
9 lines
226 B
TypeScript
import { Component } from "solid-js";
|
|
|
|
/* Put this in page so browser actually downloads ltv font */
|
|
export const WeatherIconStub: Component<{}> = () => {
|
|
return (
|
|
<div class="weatherIconStub">ABCDEF</div>
|
|
)
|
|
}
|