22 lines
527 B
JavaScript
22 lines
527 B
JavaScript
import { createTheme } from "../../_mixins/index.mjs";
|
|
import { commonLight } from "../../_styles/common/index.mjs";
|
|
import { inputLight } from "../../input/styles/index.mjs";
|
|
export function self() {
|
|
return {
|
|
inputWidthSmall: '24px',
|
|
inputWidthMedium: '30px',
|
|
inputWidthLarge: '36px',
|
|
gapSmall: '8px',
|
|
gapMedium: '8px',
|
|
gapLarge: '8px'
|
|
};
|
|
}
|
|
const inputOtpLight = createTheme({
|
|
name: 'InputOtp',
|
|
common: commonLight,
|
|
peers: {
|
|
Input: inputLight
|
|
},
|
|
self
|
|
});
|
|
export default inputOtpLight; |