@7shifts/sous-chef 3.4.0 → 3.5.0

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.
@@ -0,0 +1,6 @@
1
+ import React from 'react';
2
+ declare type Props = {
3
+ children: React.ReactNode;
4
+ };
5
+ declare const Bold: ({ children }: Props) => JSX.Element;
6
+ export default Bold;
@@ -0,0 +1,6 @@
1
+ import React from 'react';
2
+ declare type Props = {
3
+ children: React.ReactNode;
4
+ };
5
+ declare const Italic: ({ children }: Props) => JSX.Element;
6
+ export default Italic;
@@ -0,0 +1,6 @@
1
+ import React from 'react';
2
+ declare type Props = {
3
+ children: React.ReactNode;
4
+ };
5
+ declare const Underline: ({ children }: Props) => JSX.Element;
6
+ export default Underline;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@7shifts/sous-chef",
3
- "version": "3.4.0",
3
+ "version": "3.5.0",
4
4
  "description": "7shifts component library",
5
5
  "author": "7shifts",
6
6
  "license": "MIT",
@@ -1,12 +0,0 @@
1
- import React from 'react';
2
- import { IconSize } from '../types';
3
- declare type Props = {
4
- size?: IconSize;
5
- color?: string;
6
- testId?: string;
7
- } & React.SVGProps<SVGSVGElement>;
8
- declare const IconCoffeeCup: {
9
- ({ testId, ...props }: Props): JSX.Element;
10
- displayName: string;
11
- };
12
- export default IconCoffeeCup;