8 lines
258 B
JavaScript
8 lines
258 B
JavaScript
import rtlStyle from "../src/styles/rtl.cssr.mjs";
|
|
import { buttonRtl } from "../../button/styles/rtl.mjs";
|
|
import { spaceRtl } from "../../space/styles/rtl.mjs";
|
|
export const thingRtl = {
|
|
name: 'Thing',
|
|
style: rtlStyle,
|
|
peers: [buttonRtl, spaceRtl]
|
|
}; |