| 123456789101112131415161718192021 |
- import { buildProps, definePropType } from '../../../utils/vue/props/runtime.mjs';
- const dividerProps = buildProps({
- direction: {
- type: String,
- values: ["horizontal", "vertical"],
- default: "horizontal"
- },
- contentPosition: {
- type: String,
- values: ["left", "center", "right"],
- default: "center"
- },
- borderStyle: {
- type: definePropType(String),
- default: "solid"
- }
- });
- export { dividerProps };
- //# sourceMappingURL=divider.mjs.map
|