@pop-ui/foundation 0.0.23 → 0.0.25
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/README.md +3 -3
- package/dist/foundation.js +2837 -316
- package/dist/foundation.umd.cjs +1 -1
- package/dist/types/index.d.ts +121 -5
- package/package.json +2 -2
package/README.md
CHANGED
|
@@ -153,12 +153,12 @@ yarn build
|
|
|
153
153
|
|
|
154
154
|
## 타입 정의
|
|
155
155
|
|
|
156
|
-
###
|
|
156
|
+
### IIconProps
|
|
157
157
|
|
|
158
158
|
```typescript
|
|
159
|
-
import type {
|
|
159
|
+
import type { IIconProps } from '@pop-ui/foundation';
|
|
160
160
|
|
|
161
|
-
interface
|
|
161
|
+
interface IIconProps extends SVGProps<SVGSVGElement> {
|
|
162
162
|
size?: number;
|
|
163
163
|
color?: string;
|
|
164
164
|
}
|