Files
ionic-framework/core/src/components/row/row.tsx
2022-04-04 11:12:53 -04:00

20 lines
403 B
TypeScript

import type { ComponentInterface } from '@stencil/core';
import { Component, Host, h } from '@stencil/core';
import { getIonMode } from '../../global/ionic-global';
@Component({
tag: 'ion-row',
styleUrl: 'row.scss',
shadow: true,
})
export class Row implements ComponentInterface {
render() {
return (
<Host class={getIonMode(this)}>
<slot></slot>
</Host>
);
}
}