React 배지 개요
Ignite UI for React 시각적 알림이 필요할 때 애플리케이션의 아바타, 탐색 메뉴 또는 기타 구성 요소와 함께 사용되는 구성 요소입니다. 배지는 일반적으로 정보, 성공, 경고 또는 오류를 전달하기 위해 미리 정의된 스타일로 디자인됩니다.
React Badge Example
Usage
먼저 다음 명령을 실행하여 Ignite UI for React 설치해야 합니다.
npm install igniteui-react
그런 다음 다음과 같이 필요한 CSS인 IgrBadge
가져오고 해당 모듈을 등록해야 합니다.
import { IgrBadgeModule, IgrBadge } from 'igniteui-react';
import 'igniteui-webcomponents/themes/light/bootstrap.css';
IgrBadgeModule.register();
<IgrBadge />
배지 주위에 미묘한 테두리를 표시하려면 배지의 outlined
속성을 설정하면 됩니다.
<IgrBadge outlined="true" ></IgrBadge>
Examples
Variants
Ignite UI for React 사전 정의된 여러 스타일 변형을 지원합니다. 변형 속성에 지원되는 값인 primary
(기본값), info
, success
, warning
또는 danger
중 하나를 할당하여 variant
을 변경할 수 있습니다.
<IgrBadge variant="success" ></IgrBadge>
Shape
배지 구성 요소는 rounded
(기본값) 모양과 square
모양을 지원합니다. 이러한 값은 shape
속성에 할당될 수 있습니다.
<IgrBadge shape="square" ></IgrBadge>
Styling
배지 구성 요소는 모든 스타일 속성을 변경하는 데 사용할 수 있는 base
부분을 노출합니다.
igc-badge::part(base) {
color: olive;
background: beige;
border-radius: 2px;
}