@@ -956,3 +956,105 @@ export const EXPORT_DEFAULT_함수형_컴포넌트 = {
956956 />
957957</svg>` ,
958958}
959+
960+ export const EMPTY_PROPS_COMPONENT = {
961+ 컴포넌트_코드 : `import React from 'react'
962+ import * as CSS from 'csstype'
963+
964+ export default function IconExample() {
965+ return (
966+ <svg width="100%" height="100%" viewBox="0 0 9 18" style="">
967+ <path
968+ fill="none"
969+ fillRule="evenodd"
970+ stroke="#000"
971+ strokeLinejoin="round"
972+ d="M8.521 0L0.5 8.021 8.521 16"
973+ transform="translate(0 1)"
974+ />
975+ </svg>
976+ )
977+ }` ,
978+ PROPS : { } ,
979+ PROPS_없는_SVG_코드 : `<svg width="100%" height="100%" viewBox="0 0 9 18" style="">
980+ <path
981+ fill="none"
982+ fillRule="evenodd"
983+ stroke="#000"
984+ strokeLinejoin="round"
985+ d="M8.521 0L0.5 8.021 8.521 16"
986+ transform="translate(0 1)"
987+ />
988+ </svg>` ,
989+ /**
990+ * props가 없는 경우 동적으로 변경되는 값이 없으므로 그대로 유지
991+ */
992+ 완료된_SVG_코드 : `<svg width="100%" height="100%" viewBox="0 0 9 18">
993+ <path
994+ fill="none"
995+ fillRule="evenodd"
996+ stroke="#000"
997+ strokeLinejoin="round"
998+ d="M8.521 0L0.5 8.021 8.521 16"
999+ transform="translate(0 1)"
1000+ />
1001+ </svg>` ,
1002+ }
1003+
1004+ export const EMPTY_CONTAINER_COMPONENT = {
1005+ 컴포넌트_코드 : `import React from 'react'
1006+ import * as CSS from 'csstype'
1007+
1008+ export default function IconExample() {
1009+ return (
1010+ <svg width="100%" height="100%" viewBox="0 0 9 18" style="">
1011+ <g>
1012+ <g>
1013+ <path
1014+ fill="none"
1015+ fillRule="evenodd"
1016+ stroke="#000"
1017+ strokeLinejoin="round"
1018+ d="M8.521 0L0.5 8.021 8.521 16"
1019+ transform="translate(0 1)"
1020+ />
1021+ </g>
1022+ </g>
1023+ <path />
1024+ <path />
1025+ <path />
1026+ </svg>
1027+ )
1028+ }` ,
1029+ PROPS : { } ,
1030+ PROPS_없는_SVG_코드 : `<svg width="100%" height="100%" viewBox="0 0 9 18" style="">
1031+ <g>
1032+ <g>
1033+ <path
1034+ fill="none"
1035+ fillRule="evenodd"
1036+ stroke="#000"
1037+ strokeLinejoin="round"
1038+ d="M8.521 0L0.5 8.021 8.521 16"
1039+ transform="translate(0 1)"
1040+ />
1041+ </g>
1042+ </g>
1043+ <path />
1044+ <path />
1045+ <path />
1046+ </svg>` ,
1047+ /**
1048+ * props가 없는 경우 동적으로 변경되는 값이 없으므로 그대로 유지
1049+ */
1050+ 완료된_SVG_코드 : `<svg width="100%" height="100%" viewBox="0 0 9 18">
1051+ <path
1052+ fill="none"
1053+ fillRule="evenodd"
1054+ stroke="#000"
1055+ strokeLinejoin="round"
1056+ d="M8.521 0L0.5 8.021 8.521 16"
1057+ transform="translate(0 1)"
1058+ />
1059+ </svg>` ,
1060+ }
0 commit comments