@tapie-kr/inspire-react
Version:
React Component Collection for INSPIRE
24 lines (21 loc) • 1.02 kB
JavaScript
/* eslint-disable */
/*
* INSPIRE : Creative Kit
* React Component Collection for INSPIRE
*
* This file is generated automatically. Do not modify it manually
* Generated at : 2025. 3. 4. 오후 6:18:13
* @tapie-kr/inspire-react version: 0.2.15
*
* (c) 2025 TAPIE. All rights reserved.
* MIT License
*/
import { jsx } from 'react/jsx-runtime';
import { colorBinding } from './styles.css.js';
import cn from '../../../_virtual/index.js';
import SvgGrayscaleLabel from './assets/grayscale-label.svg.js';
import SvgGrayscaleSymbol from './assets/grayscale-symbol.svg.js';
import SvgSolidLabel from './assets/solid-label.svg.js';
import SvgSolidSymbol from './assets/solid-symbol.svg.js';
function TAPIESymbol(props){let SvgToRender=SvgGrayscaleSymbol;if(props.isSolid){SvgToRender=props.hasLabel?SvgSolidLabel:SvgSolidSymbol;}else {SvgToRender=props.hasLabel?SvgGrayscaleLabel:SvgGrayscaleSymbol;}return jsx(SvgToRender,{className:cn(props.className,colorBinding),height:props.size})}
export { TAPIESymbol };