Skip to content

Commit

Permalink
fix(spinner): remove unused code
Browse files Browse the repository at this point in the history
  • Loading branch information
aesteves60 authored and dpellier committed Jul 29, 2024
1 parent c9883e5 commit 545c098
Showing 1 changed file with 1 addition and 17 deletions.
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
import type { OdsSpinnerColor } from '../../constants/spinner-color';
import type { OdsSpinnerSize } from '../../constants/spinner-size';
import type { FunctionalComponent } from '@stencil/core';
import { Component, Event, EventEmitter, Host, Method, Prop, h } from '@stencil/core';
import { Component, Host, Prop, h } from '@stencil/core';
import SpinnerSVG from '../../assets/default.svg';
import { ODS_SPINNER_COLOR } from '../../constants/spinner-color';
import { ODS_SPINNER_SIZE } from '../../constants/spinner-size';
Expand All @@ -12,25 +12,9 @@ import { ODS_SPINNER_SIZE } from '../../constants/spinner-size';
tag: 'ods-spinner',
})
export class OdsSpinner {
/**
* test typedoc comment props
*/
@Prop({ reflect: true }) color: OdsSpinnerColor = ODS_SPINNER_COLOR.primary;
@Prop({ reflect: true }) size: OdsSpinnerSize = ODS_SPINNER_SIZE.md;

/**
* test typedoc comment event
*/
@Event() focusEvent!: EventEmitter<void>;

/**
* test typedoc comment methods
*/
@Method()
async someMethodTest(): Promise<string | number> {
return 'method stencil';
}

render(): FunctionalComponent {
return (
<Host
Expand Down

0 comments on commit 545c098

Please sign in to comment.