diff options
Diffstat (limited to 'src/components/NoticeTextSectionComponent.tsx')
-rw-r--r-- | src/components/NoticeTextSectionComponent.tsx | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/src/components/NoticeTextSectionComponent.tsx b/src/components/NoticeTextSectionComponent.tsx index 713def35..04262289 100644 --- a/src/components/NoticeTextSectionComponent.tsx +++ b/src/components/NoticeTextSectionComponent.tsx @@ -1,11 +1,11 @@ import * as React from "react"; export interface NoticeTextSelectionProps { - icon?: string, - text: string, - idSuffix: string, - onClick?: (event: React.MouseEvent) => unknown, - children?: React.ReactNode + icon?: string; + text: string; + idSuffix: string; + onClick?: (event: React.MouseEvent) => unknown; + children?: React.ReactNode; } export interface NoticeTextSelectionState { |