File size: 215 Bytes
1e92f2d |
1 2 3 4 5 6 7 8 |
import type { SystemStyleObject } from "./css.types"
export const EMPTY_STYLES = Object.freeze({} as SystemStyleObject)
export const EMPTY_SLOT_STYLES = Object.freeze(
{} as Record<string, SystemStyleObject>,
)
|