mirror of
https://github.com/home-assistant/frontend.git
synced 2025-11-09 02:49:51 +00:00
6 lines
179 B
TypeScript
6 lines
179 B
TypeScript
import { refine, string } from "superstruct";
|
|
|
|
const isIcon = (value: string) => value.includes(":");
|
|
|
|
export const icon = () => refine(string(), "icon (mdi:icon-name)", isIcon);
|