17 lines
305 B
JavaScript
17 lines
305 B
JavaScript
import { token } from '..';
|
|
|
|
export default {
|
|
appearance: token.prop('appearance')
|
|
};
|
|
|
|
/* const { styleClass } = require('../../utils');
|
|
|
|
module.exports = (root, opts) => {
|
|
const appearance = {
|
|
'appearance-none': 'none'
|
|
};
|
|
|
|
styleClass('appearance', appearance, root, opts);
|
|
};
|
|
*/
|